Added support for 'Hermes Paketschein'
This commit is contained in:
parent
ca219e56c3
commit
ce057bd4b4
3 changed files with 49 additions and 2 deletions
24
convert.py
24
convert.py
|
@ -26,3 +26,27 @@ def convert_dhl(id):
|
||||||
|
|
||||||
with open(f"./downloads/{id}.pdf", "wb") as fh:
|
with open(f"./downloads/{id}.pdf", "wb") as fh:
|
||||||
writer.write(fh)
|
writer.write(fh)
|
||||||
|
|
||||||
|
def convert_hermes(id):
|
||||||
|
with open(f"./uploads/{id}.pdf", "rb") as fh:
|
||||||
|
reader = PdfReader(fh)
|
||||||
|
writer = PdfWriter()
|
||||||
|
|
||||||
|
numPages = len(reader.pages)
|
||||||
|
if numPages != 1:
|
||||||
|
exit(1)
|
||||||
|
|
||||||
|
#page = reader.pages[0].rotate(90)
|
||||||
|
page = reader.pages[0]
|
||||||
|
|
||||||
|
left = 30
|
||||||
|
bottom = 452
|
||||||
|
right = 564
|
||||||
|
# calculate last value to get a 3:2 rectangle
|
||||||
|
top = bottom+((right-left)/3)*2
|
||||||
|
|
||||||
|
page.mediabox = RectangleObject((left, bottom,right,top))
|
||||||
|
writer.add_page(page)
|
||||||
|
|
||||||
|
with open(f"./downloads/{id}.pdf", "wb") as fh:
|
||||||
|
writer.write(fh)
|
||||||
|
|
19
main.py
19
main.py
|
@ -3,14 +3,14 @@ from bottle import route, request, static_file, run, redirect, HTTPResponse, hoo
|
||||||
from random import randint
|
from random import randint
|
||||||
from os import remove
|
from os import remove
|
||||||
|
|
||||||
from convert import convert_dhl
|
from convert import convert_dhl, convert_hermes
|
||||||
|
|
||||||
@route('/')
|
@route('/')
|
||||||
def root():
|
def root():
|
||||||
return static_file('index.html', root='templates')
|
return static_file('index.html', root='templates')
|
||||||
|
|
||||||
@route('/dhl', method='POST')
|
@route('/dhl', method='POST')
|
||||||
def do_upload():
|
def dhl():
|
||||||
upload = request.files.get('upload')
|
upload = request.files.get('upload')
|
||||||
if upload.content_type != "application/pdf":
|
if upload.content_type != "application/pdf":
|
||||||
return HTTPResponse(status=400, body="Bad file")
|
return HTTPResponse(status=400, body="Bad file")
|
||||||
|
@ -24,6 +24,21 @@ def do_upload():
|
||||||
|
|
||||||
return redirect(f"/download/{id}")
|
return redirect(f"/download/{id}")
|
||||||
|
|
||||||
|
@route('/hermes', method='POST')
|
||||||
|
def hermes():
|
||||||
|
upload = request.files.get('upload')
|
||||||
|
if upload.content_type != "application/pdf":
|
||||||
|
return HTTPResponse(status=400, body="Bad file")
|
||||||
|
|
||||||
|
id = randint(100000,999999)
|
||||||
|
upload.save(f"./uploads/{id}.pdf")
|
||||||
|
convert_hermes(id)
|
||||||
|
print(f"converted {upload.filename} as {id}.pdf")
|
||||||
|
# delete upload file
|
||||||
|
remove(f"./uploads/{id}.pdf")
|
||||||
|
|
||||||
|
return redirect(f"/download/{id}")
|
||||||
|
|
||||||
@route('/download/<id>')
|
@route('/download/<id>')
|
||||||
def download(id):
|
def download(id):
|
||||||
filename = f"{id}.pdf"
|
filename = f"{id}.pdf"
|
||||||
|
|
|
@ -22,6 +22,14 @@
|
||||||
<button>Convert!</button>
|
<button>Convert!</button>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="variant_box">
|
||||||
|
<b>Variante 2</b><br>
|
||||||
|
Hermes Paketschein DIN A4 → 100mmx150mm
|
||||||
|
<form action="/hermes" method="post" enctype="multipart/form-data">
|
||||||
|
<input name="upload" type="file" size="50" accept="application/pdf">
|
||||||
|
<button>Convert!</button>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
</main>
|
</main>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
Loading…
Add table
Reference in a new issue