Static Logo in App Desiner GUI

1 次查看(过去 30 天)
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 个评论
Geoff Hayes
Geoff Hayes 2018-8-26
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.

请先登录,再进行评论。

采纳的回答

Image Analyst
Image Analyst 2018-8-29
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');

更多回答(1 个)

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

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Grid Lines, Tick Values, and Labels 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by