~ubuntu-branches/ubuntu/trusty/pyx/trusty

« back to all changes in this revision

Viewing changes to manual/bitmap.py

  • Committer: Bazaar Package Importer
  • Author(s): Graham Wilson
  • Date: 2004-12-25 06:42:57 UTC
  • Revision ID: james.westby@ubuntu.com-20041225064257-31469ij5uysqq302
Tags: upstream-0.7.1
ImportĀ upstreamĀ versionĀ 0.7.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
import sys; sys.path.insert(0, "..")
 
2
from pyx import *
 
3
 
 
4
image_bw = bitmap.image(2, 2, "L", "\0\377\377\0")
 
5
image_rgb = bitmap.image(3, 2, "RGB", "\77\77\77\177\177\177\277\277\277"
 
6
                                      "\377\0\0\0\377\0\0\0\377")
 
7
bitmap_bw = bitmap.bitmap(0, 1, image_bw, height=0.8)
 
8
bitmap_rgb = bitmap.bitmap(0, 0, image_rgb, height=0.8)
 
9
 
 
10
c = canvas.canvas()
 
11
c.insert(bitmap_bw)
 
12
c.insert(bitmap_rgb)
 
13
c.writeEPSfile("bitmap")
 
14