- 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
조회 수: 6 (최근 30일)
이전 댓글 표시
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
답변 (1개)
Mathy
2024년 8월 22일
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
참고 항목
카테고리
Help Center 및 File Exchange에서 Develop uifigure-Based Apps에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!