MATLAB: Add static images with APP designer

appdesignerimagestatic image

It seems that there are no standard tools (from the Component Library) to add a static (i.e., not changing) image to the Display field of a App Designer app. Is there, in fact, a way to do this (perhaps with programmatic tools)? I am interested in showing images that would help the user of the App to understand the data-input requirements and how the outputs are to be applied in practice.

Best Answer

Starting in R2019a you can use the uiimage function to create an image component in your App Designer apps.
f = uifigure;
im = uiimage(f);
im.ImageSource = 'peppers.png';
For information about scaling and other properties of the image component, see Image Properties in the MATLAB documentation.