increase designsize deviation to 4 (needs some further investigation)
[PyX/mjg.git] / examples / bitmap / pil.py
blobf7b1fe6a3fa9cc3276cd62ddd78a77b7224e8252
1 from pyx import *
2 import Image
4 im = Image.new("RGB", (3, 1))
5 im.putpixel((0, 0), (255, 0, 0))
6 im.putpixel((1, 0), (0, 255, 0))
7 im.putpixel((2, 0), (0, 0, 255))
9 c = canvas.canvas()
10 c.insert(bitmap.bitmap(0, 0, im, height=0.8))
11 c.writeEPSfile("pil")
12 c.writePDFfile("pil")