필터 지우기
필터 지우기

Logo looks different after uploading

조회 수: 5 (최근 30일)
Franta Cymorek
Franta Cymorek 2017년 4월 4일
댓글: Franta Cymorek 2017년 4월 4일
As you can see in the first picture, that is a logo I want to upload to my Matlab GUI. But after uploading it changes - it's rendered with a black color, or I would say it uses a black color as a backround (right down corner).
The code I'm using:
axes(handles.axes13)
imshow('logo4.png')
To fix it I have tried:
axes(handles.axes13)
set(gca,'color','none')
imshow('logo4.png')
But doesn't work. Could you please help me out?

채택된 답변

Guillaume
Guillaume 2017년 4월 4일
PNG images can have transparency information embedded in them and yours does. However, you discard it with your imshow call.
axes(handles.axes13)
[cdata, ~, transparency] = imread('logo4.png'); %get transparency
himg = imshow(cdata);
himg.AlphaData = alpha; %apply transparency to the image.
However, note that the background colour will be that of the figure, not the axes since imshow makes the axes not visible.
  댓글 수: 1
Franta Cymorek
Franta Cymorek 2017년 4월 4일
I have a different working solution, but still a big thanks for your help!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by