Perfectly fitting an image on a pushbutton of my GUI
1 回表示 (過去 30 日間)
古いコメントを表示
I have created a GUI where I have two pushbuttons, I have embedded an image on these pushbuttons, but as you can see there are the button images, but they have black spaces around, because the original image has them. My question is if there is an effective way of deleting those black spaces that are around of the real part of the image I want (play button and save button), so only the button part of the image appears.
I have used this code to fit the image to the pushbuttons
%Play button
[a,map]=imread('play_button.png');
[r,c,d]=size(a);
x=ceil(r/45);
y=ceil(c/60);
g=a(1:x:end,1:y:end,:);
g(g==255)=5.5*255;
set(handles.play_button,'CData',g);
I have attached an image of the GUI with those 2 buttons. And I have also attached the original images of the play button and save button.
0 件のコメント
回答 (1 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!