ChangeLog 最新ページ

Python - sleepin' with the daemon - でーもん君と眠る日々 -

最終更新時間: 2011-11-13 17:45

2006-02-28 Tue

Python Image Library メモ [Python]

アーカイブとって来て展開、 setup.py に、libjpeg,libtiff,freetypeのlib,includeパス設定
# sudo python setup.py install
対話モードでテスト
 # python 
 Python 2.3.5 (#1, Mar 20 2005, 20:38:20) 
 [GCC 3.3 20030304 (Apple Computer, Inc. build 1809)] on darwin
 Type "help", "copyright", "credits" or "license" for more information.
 >>> import Image
 >>> import ImageDraw
 >>> import time
 >>> im = Image.open("test.jpg")
 >>> draw = ImageDraw.Draw(im)
 >>> draw.text((10,10), time.strftime('%Y/%m/%d %H:%M:%S', time.localtime(time.time())))
 >>> del draw
 >>> im.show() or im.save("test2.jpg")
ChangeLog 最新ページ