如何使用 PIL/Pillow 将图像合并到画布中? [英] How do you merge images into a canvas using PIL/Pillow?

查看:45
本文介绍了如何使用 PIL/Pillow 将图像合并到画布中?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我不熟悉 PIL,但我知道在 ImageMagick 中将一堆图像放入网格中非常容易.

I'm not familiar with PIL, but I know it's very easy to put a bunch of images into a grid in ImageMagick.

例如,我如何将 16 张图像放入一个 4×4 的网格中,我可以在其中指定行和列之间的间距?

How do I, for example, put 16 images into a 4×4 grid where I can specify the gap between rows and columns?

推荐答案

这在 PIL 中也很容易做到.创建一个空图像,然后使用 粘贴.这是一个简单的例子:

This is easy to do in PIL too. Create an empty image and just paste in the images you want at whatever positions you need using paste. Here's a quick example:

import Image

#opens an image:
im = Image.open("1_tree.jpg")
#creates a new empty image, RGB mode, and size 400 by 400.
new_im = Image.new('RGB', (400,400))

#Here I resize my opened image, so it is no bigger than 100,100
im.thumbnail((100,100))
#Iterate through a 4 by 4 grid with 100 spacing, to place my image
for i in xrange(0,500,100):
    for j in xrange(0,500,100):
        #I change brightness of the images, just to emphasise they are unique copies.
        im=Image.eval(im,lambda x: x+(i+j)/30)
        #paste the image at location i,j:
        new_im.paste(im, (i,j))

new_im.show()

这篇关于如何使用 PIL/Pillow 将图像合并到画布中?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆