Copy figure in Matlab -
i asking solution blurred image when use copy figure option in matlab. example, when plot 3d figure in matlab following image (it result of printscreen!)..
however, when use option copy figure blurred image following image .
how can avoid need high resolution image using copy figure option. thank in advance may lend.
by default, figure copied enhanced metafile (a color graphics format) works basic plots such bar plots, line plots, , other 2d plots may yield undesirable results more complex plots in case. because rendering of metafile content controlled microsoft word , may render things differently matlab.
if need high resolution image, recommend using print
command can specify desired resolution (using -r
option). can import resulting image word
print(gcf, 'myfile.png', '-dpng', '-r300')
alternately, can use export_fig
file exchange better preserves appearance
another option change format used copy figure tell use bitmap instead
or can call copy figure programmatically , specify different format (either bitmap or pdf)
print(gcf, '-clipboard', '-dpdf')
Comments
Post a Comment