Compare commits
2 commits
20928a8570
...
d0e5c1e48d
Author | SHA1 | Date | |
---|---|---|---|
d0e5c1e48d | |||
d4ed39b7d2 |
1 changed files with 12 additions and 2 deletions
14
plakativ.py
14
plakativ.py
|
@ -387,6 +387,10 @@ class Plakativ:
|
|||
gdl = self.doc[self.pagenr].get_displaylist
|
||||
else:
|
||||
gdl = self.doc[self.pagenr].getDisplayList
|
||||
# this may fail with "RuntimeError: image is too wide"
|
||||
# from pdf_load_image_imp() in pdf-image.c from mupdf for sizes larger
|
||||
# than 1<<16 pixels:
|
||||
# https://bugs.ghostscript.com/show_bug.cgi?id=703839
|
||||
rect = gdl().rect
|
||||
inpage_width = pt_to_mm(rect.width)
|
||||
inpage_height = pt_to_mm(rect.height)
|
||||
|
@ -1034,7 +1038,10 @@ class Application(tkinter.Frame):
|
|||
top_frame = tkinter.Frame(frame_right)
|
||||
top_frame.pack(fill=tkinter.X)
|
||||
|
||||
tkinter.Button(top_frame, text="Open PDF", command=self.on_open_button).pack(
|
||||
button_text = "Open PDF"
|
||||
if have_img2pdf:
|
||||
button_text = "Open PDF, JPG, PNG, TIF"
|
||||
tkinter.Button(top_frame, text=button_text, command=self.on_open_button).pack(
|
||||
side=tkinter.LEFT, expand=tkinter.TRUE, fill=tkinter.X
|
||||
)
|
||||
tkinter.Button(top_frame, text="Help", state=tkinter.DISABLED).pack(
|
||||
|
@ -1188,10 +1195,13 @@ class Application(tkinter.Frame):
|
|||
self.canvas.delete(tkinter.ALL)
|
||||
|
||||
if not hasattr(self, "plakativ"):
|
||||
button_text = "Open PDF"
|
||||
if have_img2pdf:
|
||||
button_text = "Open PDF, JPG, PNG, TIF"
|
||||
self.canvas.create_text(
|
||||
self.canvas_size[0] / 2,
|
||||
self.canvas_size[1] / 2,
|
||||
text='Click on the "Open PDF" button in the upper right.',
|
||||
text='Click on the "%s" button in the upper right.' % button_text,
|
||||
fill="white",
|
||||
)
|
||||
return
|
||||
|
|
Loading…
Reference in a new issue