remove none-existing reference
[PyX.git] / examples / bitmap / pil.py
blob94eae0ef73d04e2752381019de54d4406e33a2d5
1 from pyx import *
2 from PIL 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")