vote up 1 vote down star

Is it possible to reduce the depth of an image using PIL? Say like going to 4bpp from a regular 8bpp.

flag

1 Answer

vote up 4 vote down check

You can easily convert image modes (just call im.convert(newmode) on an image object im, it will give you a new image of the new required mode), but there's no mode for "4bpp"; the modes supported are listed here.

link|flag
Thanks Alex! Great help as always ! – Geo Oct 5 at 18:06
@Geo, you're welcome! – Alex Martelli Oct 5 at 18:10

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.