Saveas: missing half the figure!?
古いコメントを表示
I have three axes on a single figure. For each one, I manually set the position instead of using subplot. When I save the file using:
saveas(gcf,fileName,'pdf');
the figure saves, the orientation (portrait/landscape) is maintained, and the figure dimensions are preserved, BUT the content of the image is messed up (see attached figure). This only happens sometimes, other times it works just fine doing very similar plotting.

QUESTION: Why is this happening and how do I avoid it without making my life too much more difficult.
Here are some bits and pieces of my code:
% Setup size and orientation to be that of a landscape letter paper
figure(ifig)
set(gcf,'DefaultAxesFontSize',fontsize,'DefaultTextFontSize',fontsize)
set(gcf, 'Units', 'inches', 'PaperPosition', [0,0,11,8.5]);
set(gcf, 'Position', [2 1.5 11 8.5 ]);
set(gcf, 'PaperOrientation','landscape');
% setup axes position
position = [xshift yshift width height1];
axes('units','inches','position',position);
% then I plot using contourf
% now save
fileName = '/path/to/file.pdf';
saveas(gcf,fileName,'pdf');
回答 (2 件)
Shashank Prasanna
2013 年 7 月 9 日
0 投票
Try using export_fig, this is a very popular file central submission that makes exporting figures easy and trouble free:
10 件のコメント
Shashank Prasanna
2013 年 7 月 9 日
Check what renderer it is:
get(gcf,'renderer')
Try either of the three: painters, opengl or zbuffers
If they don't work you, there is no harm in using export_fig, its tried and tested and popular. Just keep it in your path.
Kellen
2013 年 7 月 9 日
Shashank Prasanna
2013 年 7 月 10 日
What happens if you don't set all the properties you set but use the default figure properties? If that doesn't work, we may need to see the fig file or some reproduction steps to try and test it out.
Kellen
2013 年 7 月 10 日
Shashank Prasanna
2013 年 7 月 10 日
Possible. Can you share the fig file or something we can work with?
Kellen
2013 年 7 月 10 日
Kellen
2013 年 7 月 11 日
Kellen
2013 年 7 月 11 日
Shashank Prasanna
2013 年 7 月 11 日
Unfortunately, we won't be able to help much without something to work with.
Kellen
2013 年 7 月 11 日
Jan
2025 年 2 月 20 日
0 投票
I have this same problem. Unfortunately the fix you describe is not clear to me.
In my plot (single axes, with axes labels, tile and legend), I annotate some data points and add text sing the text() function both inside the axes and in the margin to the right of the axes.
When I use the GUI to save the (full screen) image, the results are as expected, but when using saveas() the image is cut to about 2/3 of the size in both dimentions. The top-left corner is preserved, the lower-right corner is missing. Also the legend overlaps my plotted data, as if the window was much smaller when the function call was made.
Are there some preferences that can be set for this function?
1 件のコメント
Jan
2025 年 2 月 20 日
Got it to work with exportgraphics() and png file type. Not with e.g., emf.
https://nl.mathworks.com/help/matlab/creating_plots/save-figure-at-specific-size-and-resolution.html
カテゴリ
ヘルプ センター および File Exchange で Printing and Saving についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!