i want to alter dpi
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
how can i alter dpi of an image and set it to 300.
0 Kommentare
Akzeptierte Antwort
Sean de Wolski
am 25 Feb. 2013
In print? Specify the rnumber
print(gcf,'-r300')
2 Kommentare
Sean de Wolski
am 25 Feb. 2013
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
Weitere Antworten (1)
Walter Roberson
am 25 Feb. 2013
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
0 Kommentare
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!