R2014b problem exporting EPS

조회 수: 2 (최근 30일)
Bolin
Bolin 2014년 11월 5일
답변: Doug Hull 2014년 11월 11일
I just updated matlab to r2014b, and found when I tried to export a figure to EPS as I used to do:
set(gcf,'PaperPositionMode','auto'); print -r300 -depsc test.eps
then the figure was printed to a letter size white background, instead of being properly cropped to the actual figure size. Then I tried manually setting the papersize as follows:
set(gcf,'PaperPositionMode','Manual'); set(gcf,'PaperUnits','inches'); set(gcf,'PaperSize',[8 6]); set(gcf,'PaperPosition',[0 0 8 6]); print(gcf,'-r300','-depsc','test.eps')
But it still got printed to a letter size white background!! Is this a bug or have I missed anything? I'm using OS X Yosemite.
Thanks a lot!!
  댓글 수: 1
Paul
Paul 2014년 11월 7일
This is definitely a bug as I have the same problem. I am also using OS X Yosemite and version R2014b. I used eps graphics converted to pdf by Preview for figures in LaTeX. As a work around I would use pdf generated by Matlab as these come out with the correct page size, however, my LaTeX compiler will not recognize pdf generated by MatLab R2014b. Pdf generated by the previous version of Matlab worked just fine so it seems that not just eps generation is messed up in the new version.

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

채택된 답변

Doug Hull
Doug Hull 2014년 11월 11일
Thank you for your patience. We have published an article about this.
The short answer is we are placing the BoundBox information at the end of the file. This is in accorance with the standard. Unfortunatly, some readers do not recognize this. Someone here has made a script to move the boundingbox information in the file:

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Printing and Saving에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by