mirror of
https://gitlab.com/oloturia/fumcaso.git
synced 2024-11-01 01:38:16 +01:00
added link
This commit is contained in:
parent
46e58b8502
commit
3d1f36cb8b
1 changed files with 5 additions and 2 deletions
|
@ -130,7 +130,7 @@ def writeStrip(story,config):
|
|||
for vign in strip:
|
||||
image.paste(vign,(xshift,0))
|
||||
xshift += config["panelLength"]
|
||||
ImageDraw.Draw(image).rectangle([0,0,config["xSize"]-1,config["ySize"]-1], fill=None, outline="black", width=1)
|
||||
ImageDraw.Draw(image).rectangle([0,0,config["xSize"]-1,config["ySize"]-1], fill=None, outline="black", width=1)
|
||||
return image
|
||||
|
||||
def createStrip(config,specialPlatform=""):
|
||||
|
@ -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))
|
||||
|
|
Loading…
Reference in a new issue