Resolution requirements 300-600 dpi..

162 ビュー (過去 30 日間)
Ara
Ara 2014 年 8 月 7 日
回答済み: Palguna Gopireddy 2022 年 11 月 27 日
Hi Everybody,
My publisher wants dpi between 300-600 dpi, and the height cannot exceed 230mm (~860 pixels). When I "save as" my MATLAB figure to ".tif" or ".tif (no compression)" . Everything seems fine, however, only the horizontal and vertical resolution is not the one that I want, (is ~ 116dpi). So, when I change resolution to 300 or even 600 dpi the height of figure exceeds 230mm.
Do you have any idea how to fix it?
I appreciate your help,

採用された回答

Harsha Medikonda
Harsha Medikonda 2014 年 8 月 8 日
|Refer to the example code below.
x=(1:2:10)
y=(1:2:10)
plot(x,y)
size = [200 200];
res = 300;
set(gcf,'paperunits','inches','paperposition',[0 0 size/res]);
print('resized.tiff','-dtiff',['-r' num2str(res)]);
Here I have set the width and height to be 200. Resolution is set to 300dpi. To set the properties(“paperunnits” and “paperposition”) of the image, you could use the “set” function. “print” function is used to set the resolution to 300dpi.|

その他の回答 (2 件)

Eslam Wafdy
Eslam Wafdy 2019 年 5 月 6 日
in the figure window From File Menu Choose >>>Export Setup ,then in rendering section >>>> Select resolution and then you can make it 600 dpi or your screen resolution
  2 件のコメント
Diego Staub Felipe
Diego Staub Felipe 2020 年 8 月 4 日
編集済み: Diego Staub Felipe 2020 年 8 月 4 日
Thank you!!!
z sh
z sh 2022 年 3 月 8 日
Hi
why horizontal\ vertical resolution in properties folder not change?

サインインしてコメントする。


Palguna Gopireddy
Palguna Gopireddy 2022 年 11 月 27 日
See this link
https://in.mathworks.com/help/matlab/creating_plots/save-figure-at-specific-size-and-resolution.html

Community Treasure Hunt

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

Start Hunting!

Translated by