我想在 gif 中获得 rgb 颜色一些像素
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
问题:
from wand.image import Image
with Image(blob=img, format='GIF') as picture:
print picture[1][1].string
# return srgb(93%,93%,93%) why?