Fixed images, added object csv with position
BIN
A00.png
Before Width: | Height: | Size: 115 KiB After Width: | Height: | Size: 115 KiB |
BIN
A01.png
Before Width: | Height: | Size: 105 KiB After Width: | Height: | Size: 105 KiB |
BIN
A02.png
Before Width: | Height: | Size: 105 KiB After Width: | Height: | Size: 105 KiB |
BIN
A03.png
Before Width: | Height: | Size: 98 KiB After Width: | Height: | Size: 98 KiB |
BIN
A04.png
Before Width: | Height: | Size: 116 KiB After Width: | Height: | Size: 116 KiB |
BIN
A05.png
Before Width: | Height: | Size: 104 KiB After Width: | Height: | Size: 104 KiB |
BIN
A06.png
Before Width: | Height: | Size: 106 KiB After Width: | Height: | Size: 106 KiB |
BIN
A07.png
Before Width: | Height: | Size: 95 KiB After Width: | Height: | Size: 95 KiB |
BIN
A08.png
Before Width: | Height: | Size: 103 KiB After Width: | Height: | Size: 103 KiB |
BIN
A09.png
Before Width: | Height: | Size: 107 KiB After Width: | Height: | Size: 107 KiB |
BIN
A10.png
Before Width: | Height: | Size: 109 KiB After Width: | Height: | Size: 109 KiB |
BIN
A11.png
Before Width: | Height: | Size: 111 KiB After Width: | Height: | Size: 111 KiB |
BIN
A12.png
Before Width: | Height: | Size: 112 KiB After Width: | Height: | Size: 112 KiB |
BIN
B04.png
Before Width: | Height: | Size: 116 KiB After Width: | Height: | Size: 116 KiB |
3
obj.csv
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
A11.png,248,185
|
||||||
|
B13.png,256,159
|
||||||
|
B14.png,284,148
|
|
|
@ -43,6 +43,10 @@ def fetchVign():
|
||||||
nvign +=1
|
nvign +=1
|
||||||
return story
|
return story
|
||||||
|
|
||||||
|
def addThing(vign):
|
||||||
|
#TODO
|
||||||
|
pass
|
||||||
|
|
||||||
def writeStrip(story):
|
def writeStrip(story):
|
||||||
for indVign in story:
|
for indVign in story:
|
||||||
if indVign!="000":
|
if indVign!="000":
|
||||||
|
@ -56,6 +60,11 @@ def writeStrip(story):
|
||||||
textVign = fetch2Text(indVign)
|
textVign = fetch2Text(indVign)
|
||||||
addtext.multiline_text((int(textVign[0]),int(textVign[1])),textVign[4],fill="#000000",font=fnt,align="center")
|
addtext.multiline_text((int(textVign[0]),int(textVign[1])),textVign[4],fill="#000000",font=fnt,align="center")
|
||||||
addtext.multiline_text((int(textVign[2]),int(textVign[3])),textVign[5],fill="#000000",font=fnt,align="center")
|
addtext.multiline_text((int(textVign[2]),int(textVign[3])),textVign[5],fill="#000000",font=fnt,align="center")
|
||||||
|
obj = addThing(indVign)
|
||||||
|
if obj!=(0,0):
|
||||||
|
#TODO
|
||||||
|
pass
|
||||||
|
|
||||||
vign.show()
|
vign.show()
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
|