これにはPILが必要だと思います(おそらくStringIOも必要です)。
次のようなもの:
from PIL import Image, ImageTk
import cStringIO
...
results = cursor.fetchone()
data = cStringIO.StringIO(results.tostring())
pic = ImageTk.PhotoImage(Image.open(data))
patface = Tkinter.Label(func, image=pic)
patface.grid(row=0, column=1)
画像をファイルに直接保存して、そこから読み込むこともできます。
詳細:
- http://zetcode.com/databases/mysqlpythontutorial/
- http://www.effbot.org/zone/pil-index htm
- http://www.effbot.org/tkinterbook/