Je veux convertir un objet Pyglet.AbstractImage à une image PIL pour la manipulation plus voici mes codesComment convertir une image Pyglet en image PIL?
from pyglet import image
from PIL import Image
pic = image.load('pic.jpg')
data = pic.get_data('RGB', pic.pitch)
im = Image.fromstring('RGB', (pic.width, pic.height), data)
im.show()
mais l'image affichée a mal tourné. alors comment convertir une image de pyglet à PIL correctement?