background for design gui
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
How do I use background for gui design?
2 comentarios
Respuesta aceptada
TAB
el 7 de Jun. de 2012
In the OpeningFcn callback of your GUI add below code
BkImage = importdata('backgnd.jpg'); %Read the image file
axes(handles.BkAxes);
image(BkImage);
Más respuestas (1)
Ver también
Categorías
Más información sobre Convert Image Type 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!