1
0
Fork 0
mirror of https://gitlab.com/oloturia/fumcaso.git synced 2025-01-08 06:27:17 +01:00

added link

This commit is contained in:
itec78 2021-05-11 15:04:08 +02:00
parent 46e58b8502
commit 3d1f36cb8b

View file

@ -259,7 +259,10 @@ if __name__ == "__main__":
pagePdf = list()
for pag in range(0,int((args.multiple[0]-1)/6+1)):
pagePdf.append(Image.new('RGB',(2479,3508),(255,255,255)))
image = Image.new('RGB',(2479,3508),(255,255,255))
fnt = ImageFont.truetype(config["font"],config["fontSize"])
ImageDraw.Draw(image).text((2479 - 500, 3508 - 200),"https://github.com/oloturia/fumcaso",fill="black",font=fnt)
pagePdf.append(image)
for ist,strip_num in enumerate(range(0,args.multiple[0])):
pagePdf[nopage].paste(pdfs[strip_num],box=(110,ypos))