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 Kommentar

Geoff Hayes
Geoff Hayes am 26 Aug. 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.

Melden Sie sich an, um zu kommentieren.

 Akzeptierte Antwort

Image Analyst
Image Analyst am 29 Aug. 2018

0 Stimmen

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

Weitere Antworten (1)

Geoff Hayes
Geoff Hayes am 26 Aug. 2018

0 Stimmen

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 Kommentare

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

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Develop Apps Using App Designer finden Sie in Hilfe-Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by