如何在PIL / Python中构建图像对象

前端之家收集整理的这篇文章主要介绍了如何在PIL / Python中构建图像对象前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个列表的三项元组列表(PIL. Image.getdata()).

我该怎么做:从这个列表中构建一个PIL.Image对象?

解决方法

getdata()的输出包括图像格式或大小,因此您需要保留它们(或以其他方式获取信息).然后使用 putdata()方法执行此操作:
# get data from old image (as you already did)
data = list(oldimg.getdata())

# create empty new image of appropriate format
newimg = Image.new(format,size)  # e.g. ('RGB',(640,480))

# insert saved data into the image
newimg.putdata(data)
原文链接:/python/185930.html

猜你在找的Python相关文章