使用PIL将多个png组合到单个透明png中

时间:2014-06-05 03:29:36

标签: python python-imaging-library

我有很多小png,我想将它们合并到一个png文件中,我使用python来完成这项工作,这是我的代码:

from PIL import Image,ImageDraw  
import os,math

def combine_images(path,out,padding=1):
    imgs=[]
    min_width,max_width,min_height,max_height=-1,-1,-1,-1
    for infile in os.listdir(path):
        f,ext=os.path.splitext(infile)
        if ext== ".png":
            im=Image.open(os.path.join(path,infile))
            imgs.append(im)
            min_width = im.size[0] if min_width<0 else  min(min_width,im.size[0])
            max_width = im.size[0] if max_width<0 else  max(max_width,im.size[0])
            min_height = im.size[1] if min_height<0 else  min(min_height,im.size[0])
            max_height = im.size[1] if max_height<0 else  max(max_height,im.size[0])
    #calculate the column and rows
    num = len(imgs)
    column_f = math.ceil(math.sqrt(num))
    row_f = math.ceil(num / column_f)

    column = int(column_f)
    row = int(row_f)

    #out image
    box=(max_width + padding*2,max_height + padding*2)
    out_width = row * box[0]
    out_height = column * box[1]

    //out_image=Image.new('L', (out_width,out_height), color=transparent)
    out_image=Image.new("RGB", (out_width, out_height))
    for y in range(row):
        for x in range(column):
            index = (y * column) + x
            if index < num:
                out_image.paste(imgs[index],(x * box[0],y * box[1]))
    out_image.save(out)

combine_images('icon','t.png')

逻辑很简单,读取某个目录中的png,计算图像的数量,大小,然后创建一个新图像并逐个粘贴它们。额外计算用于使结果图像尽可能正方形。

然而,这就是我得到的:http://pbrd.co/1kzErSc

我遇到两个问题:

1我无法使图像透明。

2似乎我的图标布局会在图像中浪费太多空间。

我想知道是否可以修复它?

1 个答案:

答案 0 :(得分:0)

out_image=Image.new("RGB", (out_width, out_height))

您需要在创建输出图像时指定您想要Alpha通道

out_image=Image.new("RGBA", (out_width, out_height))

关于浪费的空间,我想到了两件事:

  1. 重要吗?如果您只关心文件大小(而不是图像大小),请检查图像是否实际上增加了文件大小。由于PNG是压缩格式,因此可能无关紧要。

  2. 加载后按高度对图像进行排序,将它们分组为相似的高度图像,并更改每个组的网格大小。如果使用图像的应用程序必须猜测每个图标的大小,这可能不起作用。