App designer - resizing axes to image size
34 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Teshan Rezel
am 18 Mär. 2021
Kommentiert: Rashed Mohammed
am 23 Mär. 2021
Hi folks,
I'm displaying a JPEG image in my app and currently, the axes stretch the image when the window is maximised. Is there a way to make the axes the same size as the image, so that it doesn't stretch the image to maximise the window?
Thanks
0 Kommentare
Akzeptierte Antwort
Rashed Mohammed
am 22 Mär. 2021
Hi Teshan,
Since you have mentioned axes, I'm assuming you are using uiaxes to display the image. However, MATLAB has uiimage function for displaying images inside applications. This function also has the Name-Value pair ScaleMethod giving users the control over how the image must be displayed when the component area changes.
Hope this helps
2 Kommentare
Rashed Mohammed
am 23 Mär. 2021
In the App designer component library, there is an Image component which can be used in the Design View tab. You can access the ScaleMethod property once the image component is present in the component area. Alternatively you can use the following code in the Code View
img = uiimage(app.UIFigure,'ScaleMethod','none','ImageSource','image.jpg')
Hope this helps
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Migrate GUIDE Apps finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!