Hi Anne,
Yes, you have rightly pointed out, the “ctfroot” function should be used here to get the correct path for the image.
“ctfroot” returns the root of the compiled application, which is where the resources and files packaged with the app are stored.
Example Code:
imagePath = fullfile(ctfroot, 'picture.png');
selection.InlineShapes.AddPicture(imagePath, 0, 1);
- “ctfroot” gives the root directory of the compiled application.
- “fullfile” ensures that the path is correctly constructed for your operating system (handles forward/backward slashes appropriately).
This allows it to locate “picture.png” no matter where the app is launched.
Also, make sure the .png image file is included when packaging your app. You can either place the image in the same directory as your app's .exe or .app file, or you can use the "Add Files" feature in the MATLAB Compiler to explicitly include it. This ensures that the image is available to the app once it’s deployed.
For example, if you are using mcc to compile, you can use the “-a” flag to add the image file:
mcc -m myApp.m -a picture.png
Attaching documentation links for “ctfroot” and “fullfile” functions for reference:
Hope it helps!