1
0
mirror of https://github.com/ciromattia/kcc synced 2026-06-10 16:40:30 +00:00

double webtoon max height

This commit is contained in:
Alex Xu
2026-05-31 18:42:31 -07:00
committed by GitHub
parent b95cf6e179
commit 5e68ce380c
+1 -1
View File
@@ -62,7 +62,7 @@ def mergeDirectory(work):
imagesValid.append(i[0])
# Silently drop directories that contain too many images
# 131072 = GIMP_MAX_IMAGE_SIZE / 4
if targetHeight > 131072 * 4:
if targetHeight > 131072 * 8:
raise RuntimeError(f'Image too tall at {targetHeight} pixels. {targetWidth} pixels wide. Try using separate chapter folders or file fusion.')
result = Image.new('RGB', (targetWidth, targetHeight))
y = 0