使用python快速将序列图集转为雪碧图
注意事项:
- 图片输出输出格式
- 部分经过压缩软件压缩的图片合成后回损失透明通道,尽量使用原图合并
源码如下:
from os import listdir
from PIL import Image
path = 'xxxxx'//目录地址
dirs = listdir(path)
ims = [Image.open(('%s/%s' % (path, fn))) for fn in sorted(dirs) if fn.endswith('.jpg')]
if len(ims) > 0:
width, height = ims[0].size
result = Image.new(ims[0].mode, (width * len(ims), height))
for i, im in enumerate(ims):
result.paste(im, box=(i * width, 0))
result.save('xxx.jpg')//输出文件名
else:
print('no file')
网友评论