Static Logo in App Desiner GUI
9 views (last 30 days)
Show older comments
Luca Malgo
on 26 Aug 2018
Answered: Image Analyst
on 29 Aug 2018
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 Comment
Geoff Hayes
on 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.
Accepted Answer
Image Analyst
on 29 Aug 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');
0 Comments
More Answers (1)
Geoff Hayes
on 26 Aug 2018
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 Comments
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!