Saving MATLAB figures as PDF with quality 300 DPI, centered

北慕城南 提交于 2019-12-13 12:03:08

问题


I want to save a MATLAB figure as PDF, with quality 300 DPI, and centered.

So far I managed to save it, but the image appears cropped. I changed the page type to A3 and kind of solves the problem, but I am looking for something more elegant. I am doing it from the GUI, but maybe from the command line is easier in MATLAB.

Is there any package or script that makes this (fundamental task for publications and papers) a bit easier?


回答1:


Try using the following command:

print -painters -dpdf -r300 test.pdf

You will, of course, already have to have a file named test.pdf in the current directory.

Some notes on the -commands as well.

  • -painters: this specifies the use of the painters alogrithm for the exporting.
  • -dpdf: specifies a vector image, specially a pdf in this case. This is through Ghostscript.
  • -r300: specifies a 300 dpi resolution. -r400 would be 400 dpi and so on.

On an off note. I tend to just save the figure as a high DPI tiff image and import that tiff into another program where I actually assemble my figure(s) for the paper. I tend to lean towards CorelDraw personally.




回答2:


I would recommend to check the exportfig package

exportfig(gcf, path_to_file, 'format','pdf','Resolution', 300 )

also, you can check fig package, which is nice to call before the exportfig:

figure
plot(x,y)
fig
exportfig(gcf, path_to_file, 'format','pdf','Resolution', 300 )    


来源:https://stackoverflow.com/questions/11542703/saving-matlab-figures-as-pdf-with-quality-300-dpi-centered

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!