I want to save all periods of time series as a png

In MATLAB, figures are displayed correctly on the screen, but when they are saved as PNG files, the right part of the figure is cropped. Why does this happen, and how can it be resolved?

6 Comments

Would you try exportgraphics instead of print?
I tried print as you can see a screen shot what I attatched
And I also tried exportgraphics too, but it is not diffrent
OK but follow her suggestion and use exportgraphics instead.
@재혁, thanks for trying out. Would you please give us a snippet of code and some toy dataset so that people can reproduce your issue? Also, giving out your environment (OS, MATLAB version...) can be helpful.
I attatched my mat and script code. My environment is apple Mac OS and matlab version is 2025b

Sign in to comment.

 Accepted Answer

Well, I only have a Windows 11 machine, and it's not reproducible. It might be an issue specific to Mac only. What about another workaround like below to use imwrite?
gf = getframe(gcf);
imwrite(gf.cdata,'temp.png');

1 Comment

Oh! using imwrite works perfectly!! I'll use that as a workaround for now. Thank you for your suggestion!!.

Sign in to comment.

More Answers (0)

Categories

Products

Release

R2025b

Asked:

on 29 Jan 2026

Moved:

on 29 Jan 2026

Community Treasure Hunt

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

Start Hunting!