How to output the application screen as an image or PDF on the web app

조회 수: 6 (최근 30일)
TRyo
TRyo 2022년 12월 2일
답변: Mathy 2024년 8월 22일
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.

답변 (1개)

Mathy
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:
  • 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.
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!

카테고리

Help CenterFile Exchange에서 Develop uifigure-Based Apps에 대해 자세히 알아보기

제품


릴리스

R2022a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by