필터 지우기
필터 지우기

How to save app.UITable as image (.png for example)

조회 수: 23 (최근 30일)
Dominique
Dominique 2023년 2월 28일
댓글: Dominique 2023년 3월 28일
I have a GUI with App Designer to populate a UITable object.
A button press will populate the table. The output is for example as in screenshot below:
I need to save this output as .png
Is there a way to a achieve this?
Thanks.

채택된 답변

DUY Nguyen
DUY Nguyen 2023년 3월 2일
편집: DUY Nguyen 2023년 3월 2일
Hi Dominique,
You can take a screenshot of the figure using the getframe function. Then, you can save the screenshot as a PNG file using the imwrite function. The below code worked!
You may modify the code and put it in the click_button_function. If you have the table on the UIaxes, you may need to copy the contents of the UIAxes object to the new figure: copyobj(axes, fig);
% Get the figure handle
fig = uifigure('Name', 'Table Figure');
t = uitable(fig, 'Data', magic(5));
% Take a screenshot of the figure
screenshot = getframe(fig);
% Save the screenshot as a PNG file
imwrite(screenshot.cdata, 'table.png', 'png');
  댓글 수: 1
Dominique
Dominique 2023년 3월 28일
Hi DUY Nguyen,
Thanks for your reply. I tired it. It was a good tip.
This is actually placing the uitable in a parent uifigure. Then saves the figure as .png.
The tough part is the fact that the figure size is not the same as the table size. The fig size is way too big.
I tried something like
fig.Position(3:4) = t.Position(3:4)
I had to set the fig.Position manually. It's a hard way, but it's ok for my application.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

제품


릴리스

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by