フィルターのクリア

i want to alter dpi

2 ビュー (過去 30 日間)
nayana
nayana 2013 年 2 月 25 日
how can i alter dpi of an image and set it to 300.

採用された回答

Sean de Wolski
Sean de Wolski 2013 年 2 月 25 日
In print? Specify the rnumber
print(gcf,'-r300')
  2 件のコメント
nayana
nayana 2013 年 2 月 25 日
not in print i have to save it on my disk. the dpi property of the image should be adjusted to 300 and it should be saved
Sean de Wolski
Sean de Wolski 2013 年 2 月 25 日
Yes. You save a figure as an image with the print command:
figure;
surf(peaks);
print(gcf,'-r300','-dpng','test.png')
And for more info:
doc print

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

その他の回答 (1 件)

Walter Roberson
Walter Roberson 2013 年 2 月 25 日
dpi is not an physical property of images, and cannot be set by imwrite() or print(). In some kinds of images, dpi can be set in auxillary information headers, such as EXIF headers. Unfortunately MATLAB does not have any routines that can write those headers. See http://www.mathworks.com/matlabcentral/newsreader/view_thread/298784

カテゴリ

Help Center および File ExchangeImage Processing Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by