Thomi Richards wrote: > I'm generating some TIFF files using the PIL. These files then get sent to > another applicaion which prints them. I have been told that there is a field > in TIFF files which sets the image resolution. The documentation for > 1.1.5 states that: > > The *open* method sets the following *info* properties:
info-properties are stored in the info dictionary, not as plain attributes on the image object. this should work better: >>> im = Image.open(...) >>> im.info["dpi"] </F> _______________________________________________ Image-SIG maillist - [email protected] http://mail.python.org/mailman/listinfo/image-sig
