以Python水平連接影像
水平組合多個影像是影像處理中的常見任務。 Python 提供了強大的工具來使用 Pillow 函式庫來實現此目的。
問題描述
考慮三個尺寸為 148 x 95 的方形 JPEG 影像。目標是水平連接這些影像影像,同時避免結果輸出中出現任何部分影像。
建議的解決方案
以下程式碼片段解決了這個問題:
import sys
from PIL import Image
# Get the images
images = [Image.open(x) for x in ['Test1.jpg', 'Test2.jpg', 'Test3.jpg']]
# Determine the total width and height
widths, heights = zip(*(i.size for i in images))
total_width = sum(widths)
max_height = max(heights)
# Create a new, empty image
new_im = Image.new('RGB', (total_width, max_height))
# Paste the images horizontally
x_offset = 0
for im in images:
new_im.paste(im, (x_offset, 0))
x_offset = im.size[0]
# Save the output image
new_im.save('test.jpg')
此程式碼迭代輸入影像,決定它們的尺寸。它創建一個具有所有圖像的總寬度和最大高度的新圖像。每個輸入影像都是水平貼上的,它們的位置也會相應更新。
其他注意事項
免責聲明: 提供的所有資源部分來自互聯網,如果有侵犯您的版權或其他權益,請說明詳細緣由並提供版權或權益證明然後發到郵箱:[email protected] 我們會在第一時間內為您處理。
Copyright© 2022 湘ICP备2022001581号-3