画像ファイルを保存す​る時、解像度を指定す​るにはどうすればよい​ですか?

41 views (last 30 days)
MathWorks Support Team
MathWorks Support Team on 25 Oct 2013
画像ファイルを保存する時、解像度を指定するにはどうすればよいですか?

Accepted Answer

MathWorks Support Team
MathWorks Support Team on 16 Mar 2020
Edited: MathWorks Support Team on 16 Mar 2020
次のように、print関数の -r オプションを使用します。
plot(sin(0:0.1:2*pi))
print(gcf,'-djpeg','-r300','output1.jpg')
なお、解像度を変更すると保存した画像の大きさが画面上のFigureのサイズと異なります。画面上の Figureと同じサイズで保存する場合は、 -r0 オプションを使用します。その際、'PaperPositionMode'プロパティを'Auto'に設定しておきます。
set(gcf,'PaperPositionMode','Auto')
print(gcf,'-djpeg','-r0','output2.jpg')
注意
解像度を指定できるのは、PostScript、GhostScript、Tiff、Jpegのみとなります。

More Answers (0)

Categories

Find more on Read, Write, and Modify Image in Help Center and File Exchange

Products


Release

R2007b

Community Treasure Hunt

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

Start Hunting!