Home | History | Annotate | Download | only in plat-mac

Lines Matching refs:PixMap

2 QuickDraw PixMap data structure in a handy Python class.  Also provides
19 # PixMap data structure element format (as used with struct)
42 # PixMap data structure element offset
66 """PixMapWrapper -- wraps the QD PixMap object in a Python class,
67 with methods to easily get/set various pixmap fields. Note: Use the
68 PixMap() method when passing to QD calls."""
143 def PixMap(self):
144 "Return a QuickDraw PixMap corresponding to this data."
150 """Draw this pixmap into the given (default current) grafport."""
158 Qd.CopyBits(self.PixMap(), port.GetPortBitMapForCopyBits(), src, tuple(dest),
162 """Stuff this pixmap with raw pixel data from a string.
192 """Initialize this PixMap from a PIL Image object."""
201 """Return the contents of this PixMap as a PIL Image object."""