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 commentaire

Geoff Hayes
Geoff Hayes le 26 Août 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.

Connectez-vous pour commenter.

 Réponse acceptée

Image Analyst
Image Analyst le 29 Août 2018

0 votes

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');

Plus de réponses (1)

Geoff Hayes
Geoff Hayes le 26 Août 2018

0 votes

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 commentaires

Luca Malgo
Luca Malgo le 26 Août 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 le 27 Août 2018
Try hiding the axes grid lines with grid off.
Luca Malgo
Luca Malgo le 29 Août 2018
It didn't work... But axis(app.UIAXES,'off') did! Thanks for the suggestions

Connectez-vous pour commenter.

Catégories

En savoir plus sur Develop Apps Using App Designer dans Centre d'aide et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by