1
0
mirror of https://github.com/ciromattia/kcc synced 2025-12-15 18:56:28 +00:00

Add PDF jpg image extraction (fixes #2)

More work on GUI with Tkinter.
This commit is contained in:
Ciro Mattia Gonano
2013-01-14 12:53:13 +01:00
parent 988a357555
commit 2a7b2c9e3d
5 changed files with 184 additions and 38 deletions

9
kcc.py
View File

@@ -31,14 +31,11 @@
# - Improve error reporting
# - recurse into dirtree for multiple comics
__version__ = '1.30'
__version__ = '2.0'
from Tkinter import *
from kcc import gui
root = Tk()
app = gui.MainWindow(master=root)
app.master.title("Kindle Comic Converter v" + __version__)
app.master.maxsize(1000, 400)
app.mainloop()
root.destroy()
app = gui.MainWindow(master=root,title="Kindle Comic Converter v" + __version__)
root.mainloop()