现在我的代码写PNG,但我无法打开它 - 文件错误。无需裁剪所有作品,但我需要裁剪 png 文件。用我的坐标(没有 PIL 框)和透明图像。
Image.open(imagefile)
#image = image.crop(crop_coords) #only work without cropping
image.thumbnail([x, y], Image.ANTIALIAS)
imagefile = StringIO()
imagefile = open(file_destination, 'w')
try:
image.save(imagefile, "PNG", quality=90)
except:
print "Cannot save user image"
感谢帮助。
我注意到这个问题仅适用于带有索引 PNG alpha 图像的 png 文件。