如何合并100张图片得到一张巨大的图片?
How to merge 100 images to get a huge image?
我在合并 100 张图像时遇到了一些问题,因此他们构建了一个 10 x 10 的巨大图片,如上所示:我试过这样:
from PIL import Image
image1 = Image.open("4XP6edit.png")
image2 = Image.open('4MBSedit.png')
(width, height) = image1.size
result_width = 10*width
result_height = 10*height
result = Image.new('RGB', (result_width, result_height))
result.paste(im=image1, box=(0, 0))
result.paste(im=image2, box=(width, 0))
result.paste(im=image2, box=(2*width, 0))
# and so on until 10*width, 0 and than:
result.paste(im=image10, box=(0, height))
result.paste(im=image10, box=(0, 2*height))
这很好用,但我希望它在 for 循环或某事中自动创建。但是我的建议没有用..有人能找出我的错误吗?
length = len(protein_list)
k=0; m=0; j=0
for i in range(length):
image= Image.open(str(protein_list[i] + 'edit.png')
(width, height) = image.size
result_width = 10*width
result_height = 10*height
result = Image.new('RGB', (result_width, result_height))
if (k == 10): k = 0
if (j >= 0 and j <= 9): m = 0
if (j >= 10 and j <= 19): m = 1
if (j >= 20 and j <= 29): m = 2
if (j >= 30 and j <= 39): m = 3
if (j >= 40 and j <= 49): m = 4
if (j >= 50 and j <= 59): m = 5
if (j >= 60 and j <= 69): m = 6
if (j >= 70 and j <= 79): m = 7
if (j >= 80 and j <= 89): m = 8
if (j >= 90 and j <= 99): m = 9
result.paste(im=image, box=(k*width, m*height))
k= k+1
j=j+1
result
我知道这部分真的很难看,但我是编程新手,所以请原谅。有人可以帮我解决这个问题吗?
它显示了一张巨大的 10x10 黑色图片,其中显示了 proteinedit.png 的单张图片。.
看起来像这样
它看起来像那样,因为您在循环的每次迭代中都定义了结果图像。
如果所有图片的大小都一样,你可以这样做:
length = len(protein_list)
k=0; m=0; j=0
result = None
for i in range(length):
image= Image.open(str(protein_list[i] + 'edit.png')
if result is None:
(width, height) = image.size
result_width = 10*width
result_height = 10*height
result = Image.new('RGB', (result_width, result_height))
if (k == 10): k = 0
...
result
其余代码可以进行大量改进,因此如果可行,我会将该代码提交给 Code Review SO。
我在合并 100 张图像时遇到了一些问题,因此他们构建了一个 10 x 10 的巨大图片,如上所示:我试过这样:
from PIL import Image
image1 = Image.open("4XP6edit.png")
image2 = Image.open('4MBSedit.png')
(width, height) = image1.size
result_width = 10*width
result_height = 10*height
result = Image.new('RGB', (result_width, result_height))
result.paste(im=image1, box=(0, 0))
result.paste(im=image2, box=(width, 0))
result.paste(im=image2, box=(2*width, 0))
# and so on until 10*width, 0 and than:
result.paste(im=image10, box=(0, height))
result.paste(im=image10, box=(0, 2*height))
这很好用,但我希望它在 for 循环或某事中自动创建。但是我的建议没有用..有人能找出我的错误吗?
length = len(protein_list)
k=0; m=0; j=0
for i in range(length):
image= Image.open(str(protein_list[i] + 'edit.png')
(width, height) = image.size
result_width = 10*width
result_height = 10*height
result = Image.new('RGB', (result_width, result_height))
if (k == 10): k = 0
if (j >= 0 and j <= 9): m = 0
if (j >= 10 and j <= 19): m = 1
if (j >= 20 and j <= 29): m = 2
if (j >= 30 and j <= 39): m = 3
if (j >= 40 and j <= 49): m = 4
if (j >= 50 and j <= 59): m = 5
if (j >= 60 and j <= 69): m = 6
if (j >= 70 and j <= 79): m = 7
if (j >= 80 and j <= 89): m = 8
if (j >= 90 and j <= 99): m = 9
result.paste(im=image, box=(k*width, m*height))
k= k+1
j=j+1
result
我知道这部分真的很难看,但我是编程新手,所以请原谅。有人可以帮我解决这个问题吗?
它显示了一张巨大的 10x10 黑色图片,其中显示了 proteinedit.png 的单张图片。.
看起来像这样
它看起来像那样,因为您在循环的每次迭代中都定义了结果图像。 如果所有图片的大小都一样,你可以这样做:
length = len(protein_list)
k=0; m=0; j=0
result = None
for i in range(length):
image= Image.open(str(protein_list[i] + 'edit.png')
if result is None:
(width, height) = image.size
result_width = 10*width
result_height = 10*height
result = Image.new('RGB', (result_width, result_height))
if (k == 10): k = 0
...
result
其余代码可以进行大量改进,因此如果可行,我会将该代码提交给 Code Review SO。