Export a plot with predefined margins

조회 수: 16(최근 30일)
Leon
Leon 2021년 8월 28일
댓글: Leon 2021년 8월 29일
I'm using the below command to export my plot into a jpeg file:
% h is the handle for the figure
% File_W is my jpeg file name
exportgraphics(h, File_W, 'Resolution', 600);
It works well except one issue. The system will automatically crop the figure to the smallest possible without losing any information. However, that's not what I want.
Is there a way I could add a predefined margin/gap, e.g., 20 pixels to the top, bottom, left and right?
Many thanks.

채택된 답변

TADA
TADA 2021년 8월 28일
편집: TADA 2021년 8월 28일
theres the old school print function, still works well
print(h, File_W, format, '-r600');
for instance, if you want to export as .tif file:
print(h, File_W, '-dtiff', '-r600');
  댓글 수: 3
Leon
Leon 2021년 8월 29일
Many thanks!
I'll purchase the Imagine Processing toolbox and try it out later.

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

추가 답변(0개)

범주

Find more on Introduction to Installation and Licensing in Help Center and File Exchange

제품


릴리스

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by