This commit is contained in:
JerryXiao 2023-03-10 17:42:41 +08:00
parent f6be7ba070
commit e2a2a4309a
1 changed files with 1 additions and 1 deletions

View File

@ -159,7 +159,7 @@ def draw(img):
LANCZOS = Image.Resampling.LANCZOS if getattr(Image, 'Resampling', None) else Image.LANCZOS
to_draw = Image.open(args.image).convert('RGBA').rotate(args.rotate).resize((X, Y), LANCZOS)
while True:
ldraw = img.copy()
ldraw = img
draw(to_draw)
if not args.keepdrawing:
break