Borrar filtros
Borrar filtros

Perfectly fitting an image on a pushbutton of my GUI

2 visualizaciones (últimos 30 días)
Alfonso
Alfonso el 8 de Jun. de 2018
Respondida: hamdah alotaibi el 24 de Abr. de 2019
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.

Respuestas (1)

hamdah alotaibi
hamdah alotaibi el 24 de Abr. de 2019
instead of ceil() method, use floor()
good luck :)

Categorías

Más información sobre Import, Export, and Conversion en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by