| Pil image module, "mode" bug.. [message #15670] |
Sun, 07 October 2007 09:03  |
besturk Messages: 14 Registered: October 2007 |
Junior Member |
|
|
Hi..
I find the picture color with:
im=Image.open("/%s" %name)
color=im.mode #p=black & beyaz rgb=color L=grey
This usually work true but in these pictures:
http://malatya.meb.gov.tr/images/alt/ilsis_logo.gif
http://malatya.meb.gov.tr/images/meb.gif
Say me P (black&white) but these pictures are color..
What is the reason of this ?
I'm sorry my bad english
|
|
|
|
|
| Re: Pil image module, "mode" bug.. [message #15770 is a reply to message #15733 ] |
Sun, 07 October 2007 13:17  |
Michal Bozon Messages: 6 Registered: September 2007 |
Junior Member |
|
|
On Sun, 07 Oct 2007 09:02:09 -0700, Abandoned wrote:
> On Oct 7, 4:47 pm, Michal Bozon <boz...@vscht.cz> wrote:
>> On Sun, 07 Oct 2007 06:03:06 -0700, Abandoned wrote:
>> > Hi..
>> > I find the picture color with:
>> > im=Image.open("/%s" %name)
>> > color=im.mode #p=black & beyaz rgb=color L=grey
>>
>> > This usually work true but in these pictures:
>> >http://malatya.meb.gov.tr/images/alt/ilsis_logo.gif
>> >http://malatya.meb.gov.tr/images/meb.gif
>>
>> > Say me P (black&white) but these pictures are color..
>>
>> > What is the reason of this ?
>>
>> > I'm sorry my bad english
>>
>> P does mean palette, black&white is a special case of palette, with two
>> colors.
>
> How can i understand the picture color ? (black &white or color or
> grey)
If you know how to work with RGB images, you can convert the image
from the palette mode easily:
img2 = img.convert(mode='RGB')
Anyway, always is helpful to read the tutorial or basic documentation.. ;)
MB
|
|
|