- Capturing the contents of a figure created with the uifigure function or any axes within that figure.
- Capturing the contents of an app created with App Designer or any axes within that app.
How to output the application screen as an image or PDF on the web app
3 views (last 30 days)
Show older comments
I am creating a web application.
After using the application on the web, I would like to save the application screen (UIFigure) as an image or PDF.
Do you have a good method?
I can use exportapp and imwrite on the app designer, but I can't use it on the web.
0 Comments
Answers (1)
Amith
on 22 Aug 2024
Hi TRyo,
The exportapp function is not supported in MATLAB Online or Web Apps.
The getframe function does not support the following features in MATLAB Online or Web Apps:
However, exportgraphics is supported in Web Apps. To use it, you should follow these steps:
exportgraphics(axes, filename);
web(filename)
The file is then downloaded to your browser's default download location.
For more information about this method, you can refer to this MATLAB Answer:https://www.mathworks.com/matlabcentral/answers/1932575-screenshot-of-matlab-web-app
Hope this helps!
0 Comments
See Also
Categories
Find more on Develop uifigure-Based Apps in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!