Python Pillow - 合并两张图像



使用 Pillow 合并两张图像通常指的是将两张独立的图像组合或连接成一张图像,可以是水平方向或垂直方向。此过程允许我们将两张图像的内容合并到一张更大的图像中。

Pillow 是一个 Python 图像库 (PIL),它提供了各种方法和函数来执行图像处理,包括图像合并。合并图像时,我们可以选择将它们堆叠在一起(垂直合并)或并排放置(水平合并)。

Pillow 中没有直接的方法来合并图像,但我们可以使用 Python 中的 paste() 方法来实现。

以下是执行两张图像合并的分步指南。

  • 导入必要的模块。

  • 加载要合并的两张图像。

  • 确定是水平合并还是垂直合并图像。

  • 将合并后的图像保存到文件中。

  • 可以选择显示合并后的图像。此步骤有助于可视化结果,但不是必需的。

以下是本章所有示例中使用的输入图像。

butterfly original image flowers

示例

在此示例中,我们水平合并了两张输入图像。

from PIL import Image
image1 = Image.open("Images/butterfly.jpg")
image2 = Image.open("Images/flowers.jpg")
result = Image.new("RGB", (image1.width + image2.width, image1.height))
result.paste(image1, (0, 0))
result.paste(image2, (image1.width, 0))
result.save("output Image/horizontal_concatenated_image.png")
result.show()

输出

horizontal concatenated

示例

在此示例中,我们垂直合并了给定的两张输入图像。

from PIL import Image
image1 = Image.open("Images/butterfly.jpg")
image2 = Image.open("Images/flowers.jpg")
result = Image.new("RGB", (image1.width, image1.height + image2.height))
result.paste(image1, (0, 0))
result.paste(image2, (0, image1.height))
result.save("output Image/vertical_concatenated_image.png")
result.show()

输出

vertical concatenated
广告