I want get rgb color some pixel in gif
from wand.image import Image
with Image(blob=img, format='JPG') as picture:
print picture[1][1].string
# return srgb(0,0,0) is good
Problem:
from wand.image import Image
with Image(blob=img, format='GIF') as picture:
print picture[1][1].string
# return srgb(93%,93%,93%) why?