Jason Van Anden wrote:
>I have written an app using PIL that uses alpha channels during processing,
> but does not require them once the image is complete. Is there an easy way
> to remove existing alpha channels? I suspect there is but the docs don't
> make this obvious.
im = im.convert("RGB")
should do the trick.
</F>