how to add a photo in the background of an app in appdesigner

19 ビュー (過去 30 日間)
AMINE EL MOUATAMID
AMINE EL MOUATAMID 2019 年 5 月 7 日
コメント済み: AMINE EL MOUATAMID 2019 年 5 月 10 日
Capture.PNG
how can I use an image in the background instead of just using a color (the blue one)
is this possible

採用された回答

Melissa Williams
Melissa Williams 2019 年 5 月 10 日
Hello,
The image component is available in App Designer as of MATLAB R2019a.
-Melissa

その他の回答 (1 件)

Melissa Williams
Melissa Williams 2019 年 5 月 10 日
You can put an axes as the background for your app and add a startup function to populate it with your image file.
function startupFcn(app)
myImage = imread('peppers.png');
image(app.UIAxes, myImage);
end
You will want to set UIAxes title, xLabel, yLabel to blank in the Property Editor on the lower right. And XTick and YTicks = []
Best of luck.
  5 件のコメント
AMINE EL MOUATAMID
AMINE EL MOUATAMID 2019 年 5 月 10 日
it is actually located on the path
AMINE EL MOUATAMID
AMINE EL MOUATAMID 2019 年 5 月 10 日
solved , the first time I add a function not a callback
now it works
thanks

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeExplore and Edit Images with Image Viewer App についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by