Why does OpenGL renderer keep white space around figures when saving?
3 ビュー (過去 30 日間)
古いコメントを表示
Given the same figure, choosing the OpenGL renderer over the Painters renderer produces superfluous white space when saving the figure. Here's a simple example:
% create a figure with full height and width
myplot = figure('units','normalized','outerposition',[0 0 1 1]);
set(gca,'Position',[0 0 1 1])
subplot(2,1,1);
x = linspace(0,10);
y1 = sin(x);
plot(x,y1)
subplot(2,1,2);
y2 = sin(5*x);
plot(x,y2)
set(myplot,'Renderer','opengl','GraphicsSmoothing','on');
saveas(myplot,'myfigure-opengl', 'epsc');
set(myplot,'Renderer','painters','GraphicsSmoothing','on');
saveas(myplot,'myfigure-painters', 'epsc');
The figure rendered with OpenGL looks like this (when opened in GIMP or similar):
The figure rendered with painters looks like this (when opened in GIMP or similar):
The plot rendered with Painters correctly snaps to the subplots, but I need to use the OpenGL renderer for my EPS figures in order to accommodate LaTeX characters which do not format correctly with Painters. What can I do to make OpenGL save the figures without the border white space?
0 件のコメント
回答 (1 件)
Jan
2017 年 8 月 22 日
The EPS export considers the PaperPosition and not the screen dimensions of the figure. Why this is different for OpenGL and Painters is not clear to me, but differences are expected:
OpenGL creates pixel graphics, while the Painters renderer can export vector data for the EPS export. Therefore you see a kind of screen shot in the EPS created using the OpenGL renderer.
参考
カテゴリ
Help Center および File Exchange で Printing and Saving についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!