On Mon, Jan 25, 2010 at 5:04 PM, Peter Chant <pet...@mpeteozilla.vco.uke>wrote:
> Does anyone know whether PIL can handle 16 bit per channel RGB images? > PyPNG site (http://packages.python.org/pypng/ca.html) states PIL uses 8 > bits > per channel internally. > > Thanks, > > Pete > > > -- > http://www.petezilla.co.uk > > -- > http://mail.python.org/mailman/listinfo/python-list > Mode The mode of an image defines the type and depth of a pixel in the image. The current release supports the following standard modes: - *1* (1-bit pixels, black and white, stored with one pixel per byte) - *L* (8-bit pixels, black and white) - *P* (8-bit pixels, mapped to any other mode using a colour palette) - *RGB* (3x8-bit pixels, true colour) - *RGBA* (4x8-bit pixels, true colour with transparency mask) - *CMYK* (4x8-bit pixels, colour separation) - *YCbCr* (3x8-bit pixels, colour video format) - *I* (32-bit signed integer pixels) - *F* (32-bit floating point pixels) http://www.pythonware.com/library/pil/handbook/concepts.htm
-- http://mail.python.org/mailman/listinfo/python-list