how to add a photo in the background of an app in appdesigner
17 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
AMINE EL MOUATAMID
el 7 de Mayo de 2019
Comentada: AMINE EL MOUATAMID
el 10 de Mayo de 2019
how can I use an image in the background instead of just using a color (the blue one)
is this possible
0 comentarios
Respuesta aceptada
Melissa Williams
el 10 de Mayo de 2019
Hello,
The image component is available in App Designer as of MATLAB R2019a.
-Melissa
1 comentario
Más respuestas (1)
Melissa Williams
el 10 de Mayo de 2019
You can put an axes as the background for your app and add a startup function to populate it with your image file.
function startupFcn(app)
myImage = imread('peppers.png');
image(app.UIAxes, myImage);
end
You will want to set UIAxes title, xLabel, yLabel to blank in the Property Editor on the lower right. And XTick and YTicks = []
Best of luck.
5 comentarios
Ver también
Categorías
Más información sobre Develop Apps Using App Designer en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!