【发布时间】:2015-01-30 14:42:48
【问题描述】:
我正在尝试使用 Python 通过 Pillow 库批量编辑 .png 文件。这是我使用 python 的第一个脚本,因此可能会有很多错误和/或糟糕的编程习惯。
这是我当前的代码:
from PIL import Image
from PIL import ImageDraw
from os.path import basename
import os, sys
path = "D:\Pokemon Game\Pokemon Eggs\Import"
dirs = os.listdir( path )
box = (2,1,30,31)
moveup = (0, -3, -7, -11, -15, -19, -15, -9, -5, 2, 12, 14, 16, 17, 12, 8, 4, 0, -7, -13, -19, -11, -7, -5, -3)
topspace = (36, 38, 42, 46, 50, 55, 50, 44, 40, 34, 24, 22, 20, 18, 24, 28, 32, 36, 42, 48, 55, 46, 42, 40, 38)
bottomspace = (0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 6, 10, 14, 17, 12, 8, 4, 0, 0, 0, 0, 0, 0, 0, 0)
Imagesizes = ((56, 60), (56, 58), (56, 54), (56, 50), (56, 46), (56, 41), (56, 46), (56, 52), (56, 56), (56, 60), (56, 66), (56, 64), (56, 62), (56, 60), (56, 60), (56, 60), (56, 60), (56, 60), (56, 54), (56, 48), (56, 41), (56, 50), (56, 54), (56, 56), (56, 58))
for file in dirs:
#Pick an image file you have in the working directory
egg = Image.open("D:\Pokemon Game\Pokemon Eggs\Import\%s" % str(file))
#Crops white out of image
egg = egg.crop(box)
#Resizes image
egg = egg.resize((56, 60), Image.NEAREST)
#Stretch individual images
frames = []
for size in Imagesizes:
frames.append(egg.resize(size, Image.NEAREST))
#Resize canvas for each individual image - make sure it is clear
for i,image in enumerate(frames):
canvassize = (-20, -36 + moveup[i], 76, 60 + moveup[i])
frames[i]=image.crop(canvassize)
#Fix transparency
for i,image in enumerate(frames):
transparent_area1 = (0,0,20,96)
transparent_area2 = (76,0,96,96)
transparent_area3 = (0,0,96,(topspace[i]))
transparent_area4 = (0,(96-bottomspace[i]), 96, 96)
image.convert('RGBA')
mask=Image.new("1", (96, 96), color=255)
draw=ImageDraw.Draw(mask)
draw.rectangle(transparent_area1, fill=0)
draw.rectangle(transparent_area2, fill=0)
draw.rectangle(transparent_area3, fill=0)
draw.rectangle(transparent_area4, fill=0)
image.putalpha(mask)
#Convert to GIF
我的目标是让无生命的鸡蛋图像最终变成如下所示的动画图像:
我的代码存在的问题是,首先,第 35 行和第 47 行之间的整个部分导致失去透明度(这是由于第 47 行造成的)。而且我不知道如何将列表(图像)转换为动画 GIF。
【问题讨论】:
-
GIF 透明度和正常的 Alpha 透明度是完全不同的东西,我不确定 Pillow 是否能很好地处理转换 - 我从未测试过它。根据我之前使用 PIL 的经验,我猜它完全搞砸了。
-
@MarkRansom 我的代码没有达到创建 GIF 的阶段,我很难增加画布的大小,因为我调整了画布的大小以使其更大,任何新的像素都变成黑色,作为一种解决方法,我尝试在遮罩对象中绘制透明矩形,然后将遮罩与原始图像一起使用,问题是现在任何原始透明像素都变成了白色,只有透明矩形中的那些像素保持透明.
标签: python image python-imaging-library animated-gif pillow