Re: [Image-SIG] Conversion from RGB to CMYK

2009-07-14 Thread Fredrik Lundh
2009/7/14 Andrea Cappelli : > I'm a beginner with Python and I'm using PIL to convert a lot of images > from RGB colorspace to CMYK in order to insert them in a catalogue to be > printed by a typography > > i use the following piece of code > >        handle = PIL.open(filePath).convert("CMYK") >

[Image-SIG] Conversion from RGB to CMYK

2009-07-14 Thread Andrea Cappelli
Hi list, I'm a beginner with Python and I'm using PIL to convert a lot of images from RGB colorspace to CMYK in order to insert them in a catalogue to be printed by a typography i use the following piece of code handle = PIL.open(filePath).convert("CMYK") ## some stuff han