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

33 vues (au cours des 30 derniers jours)
MathWorks Support Team
MathWorks Support Team le 25 Oct 2013
画像ファイルを保存する時、解像度を指定するにはどうすればよいですか?

Réponse acceptée

MathWorks Support Team
MathWorks Support Team le 16 Mar 2020
Modifié(e) : MathWorks Support Team le 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のみとなります。

Plus de réponses (0)

Catégories

En savoir plus sur Read, Write, and Modify Image dans Help Center et File Exchange

Produits


Version

R2007b

Community Treasure Hunt

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

Start Hunting!