画像処理についてあれこれ
ImageMagickをメインに、画像処理についてのTipsを書いていきます。
Wednesday, October 01, 2008
Python Imaging Libraryを使用して画像のサイズを変更する
Python Imaging Libraryを使用して画像のサイズを変更するには、以下のコードを実行します。
# coding=UTF-8
import Image
img = Image.open("sf.jpg")
# 画像のリサイズ
img = img.resize((100, 100))
img.save("sample528.jpg")
元画像(sf.jpg)
出力画像(sample528.jpg)
関連情報
Python Imaging Libraryまとめ
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment