Writing a "Raw" Image to a File (Win, PIL)

Diez B. Roggisch deets at nospam.web.de
Sat Apr 11 11:42:51 EDT 2009


W. eWatson schrieb:
> I have an image of described as:
> Img Info:  {}
>  size:  (640, 480)
>  format:  None
>  mode:  P
>  palette:  <ImagePalette.ImagePalette instance at 0x02393378>
>  bands:  ('P',)
>  type:  <type 'instance'>
> 
> I'd like to write it to a file. Apparently, I need to convert it to a 
> string first. How do I do that? Pickle?

Did you bother reading the PIL documentation just for about 30seconds?

http://www.pythonware.com/library/pil/handbook/image.htm

Hint: look for "save".

Diez



More information about the Python-list mailing list