Static Logo in App Desiner GUI

Hi All, I have to put a logo into a App designed with App designer... There is any way to do it? somewere i saw that deom the 2016b it would be possible... I'm running the 2018a and I can't do it...
Any hint?
Thanks, Luca
UPDATE
The logo should appear as a small image in a corner of the app, next to the application name, as in figure.

1 comentario

Geoff Hayes
Geoff Hayes el 26 de Ag. de 2018
Luca - where would the logo appear? Is this a splash screen or just a small logo that appears in a corner of the app. Please clarify and add a picture if possible.

Iniciar sesión para comentar.

 Respuesta aceptada

Image Analyst
Image Analyst el 29 de Ag. de 2018
Put an axes on in App Designer. Then when you load the program, use code like this to display the image in the axes:
logoImage = imread(logoFullFileName);
imshow(handleToLogoAxes, logoImage);
axis('image', 'off');

Más respuestas (1)

Geoff Hayes
Geoff Hayes el 26 de Ag. de 2018

0 votos

Luca - you could perhaps use an axes object to display your image (see tutorial at create a simple app with App Desiginer for an example of creating an axes). You would then load the logo into the axes object in the usual way.

3 comentarios

Luca Malgo
Luca Malgo el 26 de Ag. de 2018
I would, but in this case I will see the axsis... I'd like to see just the logo... I know i could remove the tick label, but what about the black lines?
Geoff Hayes
Geoff Hayes el 27 de Ag. de 2018
Try hiding the axes grid lines with grid off.
Luca Malgo
Luca Malgo el 29 de Ag. de 2018
It didn't work... But axis(app.UIAXES,'off') did! Thanks for the suggestions

Iniciar sesión para comentar.

Categorías

Más información sobre Develop Apps Using App Designer en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 26 de Ag. de 2018

Respondida:

el 29 de Ag. de 2018

Community Treasure Hunt

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

Start Hunting!

Translated by