필터 지우기
필터 지우기

Exporting specific panels from Appdesigner

조회 수: 16 (최근 30일)
Suhas Ramanan
Suhas Ramanan 2023년 8월 25일
댓글: Suhas Ramanan 2023년 8월 28일
I have got a gridlayout with 4 panels and I would like to export specific panels to either a png, ppt or pdf. These panels have a tiledlayout and have several plots in them. Hence, I would just like to "screenshot" a specific panel and export it elsewhere.

채택된 답변

Sai Teja G
Sai Teja G 2023년 8월 25일
Hi Suhas,
I understand that you want to save the plots of panels in tiledlayout seperately.
So for this you do not need to screenshot each plot, instead you can use the below feature from MATLAB to save or export plot images seperately.
Hope it helps!
  댓글 수: 3
Mario Malic
Mario Malic 2023년 8월 27일
exportgraphics is the function to do it.
Suhas Ramanan
Suhas Ramanan 2023년 8월 28일
Thanks for the reference Mario!
I managed to create a code:
function ExportButtonPushed(app, event)
% Create a folder to store the exported images
exportFolder = 'ExportedPanels';
mkdir(exportFolder);
for i = 1:4
try
% Create a temporary figure
tempFig = figure('Visible', 'off');
% Get the handle to the current panel (app.Panel_1, app.Panel_2, etc.)
panelHandle = app.(['Panel_' num2str(i)]);
% Copy the UI panel's content to the temporary figure
copyobj(panelHandle.Children, tempFig);
% Create a filename for the exported image
imageFileName = fullfile(exportFolder, ['Panel_' num2str(i) '.png']);
% Capture and export the content of the temporary figure
exportgraphics(tempFig, imageFileName, 'Resolution', 800, 'BackgroundColor','none', 'ContentType','vector');
% Close the temporary figure
close(tempFig);
% Provide feedback to the user
disp(['Panel ' num2str(i) ' screenshot saved as: ' imageFileName]);
catch exception
% Display an error message
disp(['Error capturing Panel ' num2str(i) ': ' exception.message]);
continue; % Move on to the next panel
end
end
However, one of the panels gives me an error: Object Copy of Axes with multiple coordinate systems is not supported.
If anyone knows how to deal with exporting dual plots in a panel, do help me!

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Map Display에 대해 자세히 알아보기

태그

제품


릴리스

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by