#!/usr/bin/python
# -*- coding: utf-8 -*-
'''
Created on Sun May 03 16:15:08 2015
@author: Jorj McKie
Copyright (c) 2015 Jorj X. McKie
The license of this program is governed by the GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007. See the "COPYING" file of this repository.
Example program for the Python binding PyMuPDF of MuPDF.
Changes in version 1.9.1
-------------------------
- removed depedency on PyPDF2 by using PyMuPDF's new methods setMetadata() and
setToC().
- using incremental saves if output file equals input.
Dependencies:
--------------
PyMuPDF 1.9.1 or later
wxPython 3.0 or later
This is a program for editing a PDF file's table of contents (ToC).
After choosing a file in a file selection dialog, its ToC is displayed
in a grid, together with an image of the currently displayed PDF page.
Entries in the grid can be edited, added, duplicated, deleted and moved.
Permanent changes to the underlying file are made only when the SAVE button is
pressed.
The overall screen layout is as follows:
+--------------------+--------------------+
| | |
| le_szr | ri_szr |
| | |
+--------------------+--------------------+
Layout of left sizer "le_szr"
+-----------------------------------------+
| szr10: Button "New Row", expl. text |
+-----------------------------------------+
| szr20: MyGrid (table of contents) |
+-----------------------------------------+
| szr30: PDF metadata |
+-----------------------------------------+
| szr31: check data fields |
+-----------------------------------------+
| szr40: OK / Cancel buttons |
+-----------------------------------------+
Layout of right sizer "ri_szr"
+-----------------------------------------+
| re_szr20: forw / backw / pages |
+-----------------------------------------+
| PDFBild: Bitmap image of pdf page |
+-----------------------------------------+
'''
import os, sys
import wx
import wx.grid as gridlib
import wx.lib.gridmovers as gridmovers
import fitz # = PyMuPDF
ENCODING = "latin-1" # used for item title only
def getint(v):
import types
# extract digits from a string to form an integer
try:
return int(v)
except ValueError:
pass
if not isinstance(v, types.StringTypes):
return 0
a = "0"
for d in v:
if d in "0123456789":
a += d
return int(a)
#==============================================================================
# define scale factor for displaying page images (20% larger)
#==============================================================================
scaling = fitz.Matrix(1.2, 1.2)
#==============================================================================
# just abbreviations
#==============================================================================
defPos = wx.DefaultPosition
defSiz = wx.DefaultSize
khaki = wx.Colour(240, 230, 140)
#==============================================================================
# convenience class for storing information across functions
#==============================================================================
class PDFconfig():
def __init__(self):
self.doc = None # fitz.Document
self.meta = {} # PDF meta information
self.seiten = 0 # max pages
self.inhalt = [] # table of contents storage
self.file = None # pdf filename
self.oldpage = 0 # stores displayed page number
#==============================================================================
# render a PDF page and return wx.Bitmap
#==============================================================================
def pdf_show(seite):
page_idx = getint(seite) - 1
pix = PDFcfg.doc.getPagePixmap(page_idx, matrix = scaling)
# the following method returns just RGB data - no alpha bytes
# this seems to be required in Windows versions of wx.
# on other platforms try instead:
#bmp = wx.BitmapfromBufferRGBA(pix.w, pix.h, pix.samples)
a = pix.samplesRGB() # samples without alpha bytes
bmp = wx.BitmapFromBuffer(pix.w, pix.h, a)
pix = None
a = None
return bmp
#==============================================================================
# PDFTable = a tabular grid class in wx
#==============================================================================
class PDFTable(gridlib.PyGridTableBase):
def __init__(self):
gridlib.PyGridTableBase.__init__(self)
self.colLabels = ['Level','Title','Page']
self.dataTypes = [gridlib.GRID_VALUE_NUMBER,
gridlib.GRID_VALUE_STRING,
gridlib.GRID_VALUE_NUMBER,
]
# initial load of table with outline data
# each line consists of [lvl, title, page]
# for display, we "indent" the title with spaces
self.data = [[PDFcfg.inhalt[i][0], # indentation level
" "*(PDFcfg.inhalt[i][0] -1) + \
PDFcfg.inhalt[i][1].decode("utf-8","ignore"), # title
PDFcfg.inhalt[i][2]] \
for i in range(len(PDFcfg.inhalt))]
if not PDFcfg.inhalt:
self.data = [[0, "*** no outline ***", 0]]
# used for correctly placing new lines. insert at end = -1
self.cur_row = -1
#==============================================================================
# Methods required by wxPyGridTableBase interface.
# Will be called by the grid.
#==============================================================================
def GetNumberRows(self): # row count in my data table
return len(self.data)
def GetNumberCols(self): # column count in my data table
return len(self.colLabels)
def IsEmptyCell(self, row, col): # is-cell-empty checker
try:
return not self.data[row][col]
except IndexError:
return True
def GetValue(self, row, col): # get value (to be put into a cell)
if col == 1: # simulate indentation if title column
lvl = int(self.data[row][0]) - 1
value = " " * lvl + self.data[row][1].strip()
else:
value = self.data[row][col]
return value
def SetValue(self, row, col, value): # put value from cell to data table
if col == 1:
x_val = value.strip() # strip off simulated indentations
else:
x_val = value
self.data[row][col] = x_val
#==============================================================================
# set col names
#==============================================================================
def GetColLabelValue(self, col):
return self.colLabels[col]
#==============================================================================
# set row names (just row counters in our case). Only needed, because we have
# row-based operations (dragging, duplicating), and these require some label.
#==============================================================================
def GetRowLabelValue(self,row):
return str(row +1)
#==============================================================================
# determine cell content type, controls the grid behaviour for the cells
#==============================================================================
def GetTypeName(self, row, col):
return self.dataTypes[col]
#==============================================================================
# move a row, called when user drags rows with the mouse.
# called with row numbers from -> to
#==============================================================================
def MoveRow(self, frm, to):
grid = self.GetView()
if grid and frm != to: # actually moving something?
self.cur_row = to
# Move the data rows
oldData = self.data[frm] # list of row values
del self.data[frm] # delete it from the data
# determine place for the moving row, and insert it
if to > frm:
self.data.insert(to-1,oldData)
else:
self.data.insert(to,oldData)
#==============================================================================
# inform the Grid about this by special "message batches"
#==============================================================================
grid.BeginBatch()
msg = gridlib.GridTableMessage(
self, gridlib.GRIDTABLE_NOTIFY_ROWS_DELETED, frm, 1)
grid.ProcessTableMessage(msg)
msg = gridlib.GridTableMessage(
self, gridlib.GRIDTABLE_NOTIFY_ROWS_INSERTED, to, 1)
grid.ProcessTableMessage(msg)
grid.EndBatch()
#==============================================================================
# insert a new row, called with the new cell value list (zeile).
# we use self.cur_row to determine where to put it.
#==============================================================================
def NewRow(self, zeile):
grid = self.GetView()
if grid:
if self.cur_row in range(len(self.data)): # insert in the middle?
self.data.insert(self.cur_row, zeile)
grid.BeginBatch() # inform the grid
msg = gridlib.GridTableMessage(self,
gridlib.GRIDTABLE_NOTIFY_ROWS_INSERTED, self.cur_row, 1)
grid.ProcessTableMessage(msg)
grid.EndBatch()
else: # insert at end (append)
self.data.append(zeile)
grid.BeginBatch() # inform grid
msg = gridlib.GridTableMessage(self,
gridlib.GRIDTABLE_NOTIFY_ROWS_APPENDED, 1)
grid.ProcessTableMessage(msg)
grid.EndBatch()
#==============================================================================
# Duplicate a row, called with row number
#==============================================================================
def DuplicateRow(self, row):
grid = self.GetView()
if grid:
zeile = [self.data[row][0], self.data[row][1],
self.data[row][2]]
self.data.insert(row, zeile)
grid.BeginBatch()
msg = gridlib.GridTableMessage(self,
gridlib.GRIDTABLE_NOTIFY_ROWS_INSERTED, row, 1)
grid.ProcessTableMessage(msg)
grid.EndBatch()
self.cur_row = row
#==============================================================================
# Delete a row. called with row number.
#==============================================================================
def DeleteRow(self, row):
grid = self.GetView()
if grid:
del self.data[row]
grid.BeginBatch() # inform the grid
msg = gridlib.GridTableMessage(self,
gridlib.GRIDTABLE_NOTIFY_ROWS_DELETED, row, 1)
grid.ProcessTableMessage(msg)
grid.EndBatch()
if self.cur_row not in range(len(self.data)): # update indicator
self.cur_row = -1
#==============================================================================
# define Grid
#==============================================================================
class MyGrid(gridlib.Grid):
def __init__(self, parent):
gridlib.Grid.__init__(self, parent, -1)
table = PDFTable() # initialize table
#==============================================================================
# announce table to Grid
# 'True' = enable Grid to manage the table (destroy, etc.)
#==============================================================================
self.SetTable(table, True)
#==============================================================================
# set font, width, alignment in the grid
#==============================================================================
self.SetDefaultCellFont(wx.Font(wx.NORMAL_FONT.GetPointSize(),
70, 90, 90, False, "DejaVu Sans Mono"))
# center columns (indent level, delete check box)
ct_al1 = gridlib.GridCellAttr()
ct_al1.SetAlignment(wx.ALIGN_CENTER, wx.ALIGN_CENTER)
self.SetColAttr(0, ct_al1)
self.SetColAttr(3, ct_al1)
# page number right aligned
re_al1 = gridlib.GridCellAttr()
re_al1.SetAlignment(wx.ALIGN_RIGHT, wx.ALIGN_CENTER)
self.SetColAttr(2, re_al1)
#==============================================================================
# Enable Row moving
#==============================================================================
gridmovers.GridRowMover(self)
#==============================================================================
# Bind: move row
#==============================================================================
self.Bind(gridmovers.EVT_GRID_ROW_MOVE, self.OnRowMove, self)
#==============================================================================
# Bind: duplicate a row
#==============================================================================
self.Bind(gridlib.EVT_GRID_LABEL_LEFT_DCLICK, self.OnRowDup, self)
#==============================================================================
# Bind: delete a row
#==============================================================================
self.Bind(gridlib.EVT_GRID_LABEL_RIGHT_DCLICK, self.OnRowDel, self)
#==============================================================================
# Bind: (double) click a cell
#==============================================================================
self.Bind(gridlib.EVT_GRID_CELL_LEFT_CLICK, self.OnCellClick, self)
self.Bind(gridlib.EVT_GRID_CELL_LEFT_DCLICK, self.OnCellDClick, self)
#==============================================================================
# Bind: cell is changing
#==============================================================================
self.Bind(gridlib.EVT_GRID_CELL_CHANGING, self.OnCellChanging, self)
#==============================================================================
# Event Method: cell is changing
#==============================================================================
def OnCellChanging(self, evt):
if evt.GetCol() == 2: # page number is changing
value = evt.GetString() # new cell value
PicRefresh(value) # we show corresponding image
self.AutoSizeColumn(1) # as always: title width adjust
DisableOK() # check data before save is possible
#==============================================================================
# Event Method: cell click
#==============================================================================
def OnCellClick(self, evt):
row = evt.GetRow() # row
col = evt.GetCol() # col
table = self.GetTable()
grid = table.GetView()
grid.GoToCell(row, col) # force "select" for the cell
self.cur_row = row # memorize current row
self.AutoSizeColumn(1) # adjust title col width to content
#==============================================================================
# Event Method: cell double click
#==============================================================================
def OnCellDClick(self, evt):
row = evt.GetRow() # row
col = evt.GetCol() # col
table = self.GetTable()
if col == 1 or col == 2: # refresh picture if title or page col
seite = table.GetValue(row, 2)
PicRefresh(seite)
grid = table.GetView()
grid.GoToCell(row, col) # force "select" of that cell
self.cur_row = row # memorize current row
self.AutoSizeColumn(1)
#==============================================================================
# Event Method: move row
#==============================================================================
def OnRowMove(self,evt):
frm = evt.GetMoveRow() # row being moved
to = evt.GetBeforeRow() # before which row to insert
self.GetTable().MoveRow(frm,to)
DisableOK()
#==============================================================================
# Event Method: delete row
#==============================================================================
def OnRowDel(self, evt):
row = evt.GetRow()
self.GetTable().DeleteRow(row)
DisableOK()
#==============================================================================
# Event Method: delete row
#==============================================================================
def OnRowDup(self, evt):
row = evt.GetRow()
col = evt.GetCol()
if col < 0 and row >= 0: # else this is not a row duplication!
self.GetTable().DuplicateRow(row) # duplicate the row and ...
self.GetParent().Layout() # possibly enlarge the grid
DisableOK()
#==============================================================================
#
# define dialog
#
#==============================================================================
class PDFDialog (wx.Dialog):
def __init__(self, parent):
wx.Dialog.__init__ (self, parent, id = wx.ID_ANY,
title = "Maintain the Table of Contents",
pos = defPos, size = defSiz,
style = wx.CAPTION|wx.CLOSE_BOX|
wx.DEFAULT_DIALOG_STYLE|
wx.MAXIMIZE_BOX|wx.MINIMIZE_BOX|
wx.RESIZE_BORDER)
self.SetBackgroundColour(khaki)
# maximize the screen
#self.Maximize()
# alternatively, try more scrutiny:
width = wx.GetDisplaySize()[0]-500 # define maximum width
height = wx.GetDisplaySize()[1]-35 # define maximum height
self.SetSize(wx.Size(width, height))
#==============================================================================
# Sizer 10: Button 'new row' and an explaining text
#==============================================================================
self.szr10 = wx.BoxSizer(wx.HORIZONTAL)
self.btn_neu = wx.Button(self, wx.ID_ANY, "New Row",
defPos, defSiz, 0)
self.szr10.Add(self.btn_neu, 0, wx.ALIGN_CENTER|wx.ALL, 5)
msg_txt = """NEW rows will be inserted at the end, or before the row with a right-clicked field.\nDUPLICATE row: double-click its number. DELETE row: right-double-click its number.\nDouble-click titles or page numbers to display the page image."""
explain = wx.StaticText(self, wx.ID_ANY, msg_txt,
defPos, wx.Size(-1, 50), 0)
self.szr10.Add(explain, 0, wx.ALIGN_CENTER, 5)
#==============================================================================
# Sizer 20: define outline grid and do some layout adjustments
#==============================================================================
self.szr20 = MyGrid(self)
self.szr20.AutoSizeColumn(0)
self.szr20.AutoSizeColumn(1)
self.szr20.SetColSize(2, 45)
self.szr20.SetRowLabelSize(30)
#==============================================================================
# Sizer 30: PDF meta information
#==============================================================================
self.szr30 = wx.FlexGridSizer(6, 2, 0, 0)
self.szr30.SetFlexibleDirection(wx.BOTH)
self.szr30.SetNonFlexibleGrowMode(wx.FLEX_GROWMODE_SPECIFIED)
self.tx_input = wx.StaticText(self, wx.ID_ANY, "Input:",
defPos, defSiz, 0)
self.tx_input.Wrap(-1)
self.szr30.Add(self.tx_input, 0, wx.ALIGN_CENTER, 5)
self.tx_eindat = wx.StaticText(self, wx.ID_ANY,
" %s (%s pages)" % (PDFcfg.file, str(PDFcfg.seiten)),
defPos, defSiz, 0)
self.tx_eindat.Wrap(-1)
self.szr30.Add(self.tx_eindat, 0, wx.ALL, 5)
self.tx_ausdat = wx.StaticText(self, wx.ID_ANY, "Output:",
defPos, defSiz, 0)
self.tx_ausdat.Wrap(-1)
self.szr30.Add(self.tx_ausdat, 0, wx.ALIGN_CENTER, 5)
self.btn_aus = wx.FilePickerCtrl(self, wx.ID_ANY,
PDFcfg.file, "set output file", "*.pdf",
defPos, wx.Size(480,-1),
wx.FLP_OVERWRITE_PROMPT|wx.FLP_SAVE|
wx.FLP_USE_TEXTCTRL)
self.szr30.Add(self.btn_aus, 0, wx.ALL, 5)
self.tx_autor = wx.StaticText(self, wx.ID_ANY, "Author:",
defPos, defSiz, 0)
self.tx_autor.Wrap(-1)
self.szr30.Add(self.tx_autor, 0, wx.ALIGN_CENTER, 5)
self.ausaut = wx.TextCtrl(self, wx.ID_ANY,
PDFcfg.meta["author"],
defPos, wx.Size(480, -1), 0)
self.szr30.Add(self.ausaut, 0, wx.ALL, 5)
self.pdf_titel = wx.StaticText(self, wx.ID_ANY, "Title:",
defPos, defSiz, 0)
self.pdf_titel.Wrap(-1)
self.szr30.Add(self.pdf_titel, 0, wx.ALIGN_CENTER, 5)
self.austit = wx.TextCtrl(self, wx.ID_ANY,
PDFcfg.meta["title"],
defPos, wx.Size(480, -1), 0)
self.szr30.Add(self.austit, 0, wx.ALL, 5)
self.tx_subject = wx.StaticText(self, wx.ID_ANY, "Subject:",
defPos, defSiz, 0)
self.tx_subject.Wrap(-1)
self.szr30.Add(self.tx_subject, 0, wx.ALIGN_CENTER, 5)
self.aussub = wx.TextCtrl(self, wx.ID_ANY,
PDFcfg.meta["subject"],
defPos, wx.Size(480, -1), 0)
self.szr30.Add(self.aussub, 0, wx.ALL, 5)
#==============================================================================
# Sizer 31: check data
#==============================================================================
self.szr31 = wx.FlexGridSizer(1, 2, 0, 0)
self.btn_chk = wx.Button(self, wx.ID_ANY, "Check Data",
defPos, defSiz, 0)
self.szr31.Add(self.btn_chk, 0, wx.ALIGN_TOP|wx.ALL, 5)
self.msg = wx.StaticText(self, wx.ID_ANY, "Before data can be saved, "\
"they must be checked with this button.\n"\
"Warning: Any original 'Output' file will be overwritten, "\
"once you press SAVE!",
defPos, defSiz, 0)
self.msg.Wrap(-1)
self.szr31.Add(self.msg, 0, wx.ALL, 5)
#==============================================================================
# Sizer 40: OK / Cancel
#==============================================================================
self.szr40 = wx.StdDialogButtonSizer()
self.szr40OK = wx.Button(self, wx.ID_OK, label="SAVE")
self.szr40OK.Disable()
self.szr40.AddButton(self.szr40OK)
self.szr40Cancel = wx.Button(self, wx.ID_CANCEL)
self.szr40.AddButton(self.szr40Cancel)
self.szr40.Realize()
#==============================================================================
# define lines (decoration only)
#==============================================================================
linie1 = wx.StaticLine(self, wx.ID_ANY,
defPos, defSiz, wx.LI_HORIZONTAL)
linie2 = wx.StaticLine(self, wx.ID_ANY,
defPos, defSiz, wx.LI_HORIZONTAL)
linie3 = wx.StaticLine(self, wx.ID_ANY,
defPos, defSiz, wx.LI_HORIZONTAL)
#==============================================================================
# Left Sizer: Outline and other PDF information
#==============================================================================
le_szr = wx.BoxSizer(wx.VERTICAL)
le_szr.Add(self.szr10, 0, wx.EXPAND, 5)
le_szr.Add(linie1, 0, wx.EXPAND|wx.ALL, 5)
le_szr.Add(self.szr20, 1, wx.EXPAND, 5)
le_szr.Add(self.szr31, 0, wx.EXPAND, 5)
le_szr.Add(linie2, 0, wx.EXPAND|wx.ALL, 5)
le_szr.Add(self.szr30, 0, wx.EXPAND, 5)
le_szr.Add(linie3, 0, wx.EXPAND|wx.ALL, 5)
le_szr.Add(self.szr40, 0, wx.ALIGN_TOP|wx.ALIGN_CENTER_HORIZONTAL, 5)
#==============================================================================
# Right Sizer: display a PDF page image
#==============================================================================
ri_szr = wx.BoxSizer(wx.VERTICAL) # a control line and the picture
ri_szr20 = wx.BoxSizer(wx.HORIZONTAL) # defines the control line
self.btn_vor = wx.Button(self, wx.ID_ANY, "forward",
defPos, defSiz, 0)
ri_szr20.Add(self.btn_vor, 0, wx.ALL, 5)
self.btn_zur = wx.Button(self, wx.ID_ANY, "backward",
defPos, defSiz, 0)
ri_szr20.Add(self.btn_zur, 0, wx.ALL, 5)
self.zuSeite = wx.TextCtrl(self, wx.ID_ANY, "1",
defPos, wx.Size(40, -1),
wx.TE_PROCESS_ENTER|wx.TE_RIGHT)
ri_szr20.Add(self.zuSeite, 0, wx.ALL, 5)
max_pages = wx.StaticText(self, wx.ID_ANY,
"of %s pages" % (str(PDFcfg.seiten),),
defPos, defSiz, 0)
ri_szr20.Add(max_pages, 0, wx.ALIGN_CENTER, 5)
# control line sizer composed, now add it to the vertical sizer
ri_szr.Add(ri_szr20, 0, wx.EXPAND, 5)
# define the bitmap for the pdf image ...
bmp = pdf_show(1)
self.PDFbild = wx.StaticBitmap(self, wx.ID_ANY, bmp,
defPos, defSiz, wx.BORDER_NONE)
# ... and add it to the vertical sizer
ri_szr.Add(self.PDFbild, 0, wx.ALL, 0)
#==============================================================================
# Main Sizer composition
#==============================================================================
mainszr= wx.BoxSizer(wx.HORIZONTAL)
mainszr.Add(le_szr, 1, wx.ALL, 5)
mainszr.Add(ri_szr, 0, wx.ALL, 5)
self.SetSizer(mainszr)
self.Layout()
self.Centre(wx.BOTH)
#==============================================================================
# bind buttons
#==============================================================================
self.btn_neu.Bind(wx.EVT_BUTTON, self.insertRow) # "new row"
self.btn_chk.Bind(wx.EVT_BUTTON, self.DataOK) # "check data"
self.btn_vor.Bind(wx.EVT_BUTTON, self.forwPage) # "forward"
self.btn_zur.Bind(wx.EVT_BUTTON, self.backPage) # "backward"
self.zuSeite.Bind(wx.EVT_TEXT_ENTER, self.gotoPage) # "page number"
self.PDFbild.Bind(wx.EVT_MOUSEWHEEL, self.OnMouseWheel) # mouse scroll
def __del__(self):
pass
def OnMouseWheel(self, event):
# process wheel as paging operations
d = event.GetWheelRotation() # int indicating direction
if d < 0:
self.forwPage(event)
elif d > 0:
self.backPage(event)
return
def forwPage(self, event):
seite = getint(self.zuSeite.Value) + 1
PicRefresh(seite)
event.Skip()
def backPage(self, event):
seite = getint(self.zuSeite.Value) - 1
PicRefresh(seite)
event.Skip()
def gotoPage(self, event):
seite = self.zuSeite.Value
PicRefresh(seite)
event.Skip()
#==============================================================================
# "insertRow" - Event Handler for new rows: insert a model row
#==============================================================================
def insertRow(self, event):
zeile = [1, "*** new row ***", 1, ""]
self.szr20.Table.NewRow(zeile)
DisableOK()
self.Layout()
#==============================================================================
# Check Data: enable / disable OK button
#==============================================================================
def DataOK(self, event):
valide = True
self.msg.Label = "Data OK!"
d = self.szr20.GetTable()
for i in range(self.szr20.Table.GetNumberRows()):
if i == 0 and int(d.GetValue(0, 0)) != 1:
valide = False
self.msg.Label = "row 1 must have level 1"
break
if int(d.GetValue(i, 0)) < 1:
valide = False
self.msg.Label = "row %s: level < 1" % (str(i+1),)
break
if int(d.GetValue(i, 2)) > PDFcfg.seiten or \
int(d.GetValue(i, 2)) < 1:
valide = False
self.msg.Label = "row %s: page# out of range" \
% (str(i+1),)
break
if i > 0 and (int(d.GetValue(i, 0)) - int(d.GetValue(i-1, 0))) > 1:
valide = False
self.msg.Label = "row %s: level stepping > 1" % (str(i+1),)
break
if not d.GetValue(i, 1):
valide = False
self.msg.Label = "row %s: missing title" % (str(i+1),)
break
if valide and (self.btn_aus.GetPath() == PDFcfg.file):
if PDFcfg.doc.openErrCode > 0 or PDFcfg.doc.needsPass == 1:
valide = False
self.msg.Label = "repaired or encrypted document - choose a different Output"
if not valide:
self.szr40OK.Disable()
else:
self.szr40OK.Enable()
self.Layout()
#==============================================================================
# display a PDF page
#==============================================================================
def PicRefresh(seite):
i_seite = getint(seite)
i_seite = max(1, i_seite) # ensure page# is within boundaries
i_seite = min(PDFcfg.seiten, i_seite)
dlg.zuSeite.Value = str(i_seite) # set page number in dialog fields
if PDFcfg.oldpage == i_seite:
return
PDFcfg.oldpage = i_seite
bmp = pdf_show(i_seite)
dlg.PDFbild.SetSize(bmp.Size)
dlg.PDFbild.SetBitmap(bmp)
dlg.PDFbild.Refresh(True)
bmp = None
dlg.Layout()
#==============================================================================
# Disable OK button
#==============================================================================
def DisableOK():
dlg.szr40OK.Disable()
dlg.msg.Label = "Data have changed.\nPress Check Data (again) " \
+ "before saving."
#==============================================================================
# Read PDF document information
#==============================================================================
def getPDFinfo():
PDFcfg.doc = fitz.open(PDFcfg.file)
if PDFcfg.doc.needsPass:
decrypt_doc()
if PDFcfg.doc.isEncrypted:
return True
PDFcfg.inhalt = PDFcfg.doc.getToC()
PDFcfg.seiten = PDFcfg.doc.pageCount
PDFmeta = {"author":"", "title":"", "subject":""}
for key, wert in PDFcfg.doc.metadata.items():
if wert:
PDFmeta[key] = wert.decode("utf-8", "ignore")
else:
PDFmeta[key] = ""
PDFcfg.meta = PDFmeta
return False
def decrypt_doc():
# let user enter document password
pw = None
dlg = wx.TextEntryDialog(None, 'Please enter password below:',
'Document is password protected', '',
style = wx.TextEntryDialogStyle|wx.TE_PASSWORD)
while pw is None:
rc = dlg.ShowModal()
if rc == wx.ID_OK:
pw = str(dlg.GetValue().encode("utf-8"))
PDFcfg.doc.authenticate(pw)
else:
return
if PDFcfg.doc.isEncrypted:
pw = None
dlg.SetTitle("Wrong password. Enter correct password or cancel.")
return
#==============================================================================
# Write the changed PDF file
#============================================================================
def make_pdf(dlg):
cdate = wx.DateTime.Now().Format("D:%Y%m%d%H%M%S-04'00'")
PDFmeta = {"creator":"PDFoutline.py",
"producer":"PyMuPDF",
"creationDate": cdate,
"modDate": cdate,
"title":dlg.austit.Value,
"author":dlg.ausaut.Value,
"subject":dlg.aussub.Value}
PDFcfg.doc.setMetadata(PDFmeta) # set new metadata
newtoc = []
#==============================================================================
# store our outline entries as bookmarks
#==============================================================================
for z in dlg.szr20.Table.data:
lvl = int(z[0])
pno = int(z[2])
tit = z[1].strip()
tit = tit.encode(ENCODING, "ignore")
newtoc.append([lvl, tit, pno])
PDFcfg.doc.setToC(newtoc)
outfile = dlg.btn_aus.GetPath() # get dir & name of file in screen
if outfile == PDFcfg.file:
PDFcfg.doc.save(outfile, incremental=True)
else: # equal: replace input file
PDFcfg.doc.save(outfile, garbage=3)
return
#==============================================================================
#
# Main Program
#
#==============================================================================
if wx.VERSION[0] >= 3:
pass
else:
print "need wxPython version 3.0 or higher"
sys.exit(1)
app = None
app = wx.App()
#==============================================================================
# Check if we have been invoked with a PDF to edit
#==============================================================================
if len(sys.argv) == 2:
infile = sys.argv[1]
if not infile.endswith(".pdf"):
infile = None
else:
infile = None
#==============================================================================
# let user select the file. Can only allow true PDFs.
#==============================================================================
if not infile:
dlg = wx.FileDialog(None, message = "Choose a PDF file to edit",
defaultDir = os.path.expanduser('~'),
defaultFile = wx.EmptyString,
wildcard = "PDF files (*.pdf)|*.pdf",
style=wx.OPEN | wx.CHANGE_DIR)
# We got a file only when one was selected and OK pressed
if dlg.ShowModal() == wx.ID_OK:
# This returns a Python list of selected files.
infile = dlg.GetPaths()[0]
else:
infile = None
# destroy this dialog
dlg.Destroy()
if infile: # if we have a filename ...
PDFcfg = PDFconfig() # create our PDF scratchpad
PDFcfg.file = infile
if getPDFinfo() == 0: # input is not encrypted
dlg = PDFDialog(None) # create dialog
rc = dlg.ShowModal() # show dialog
if rc == wx.ID_OK: # output PDF if SAVE pressed
make_pdf(dlg)
dlg.Destroy()
app = None
Diff to Previous Revision
--- revision 1 2016-03-16 08:42:34
+++ revision 2 2016-06-22 11:34:20
@@ -10,17 +10,26 @@
The license of this program is governed by the GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007. See the "COPYING" file of this repository.
-This an example program for the Python binding PyMuPDF of MuPDF.
-Its dependencies are:
-PyMuPDF 1.8 or later
+Example program for the Python binding PyMuPDF of MuPDF.
+
+Changes in version 1.9.1
+-------------------------
+- removed depedency on PyPDF2 by using PyMuPDF's new methods setMetadata() and
+ setToC().
+
+- using incremental saves if output file equals input.
+
+Dependencies:
+--------------
+PyMuPDF 1.9.1 or later
wxPython 3.0 or later
-PyPDF2 1.25 or later
-
-This a program for editing a PDF file's table of contents (ToC).
+
+This is a program for editing a PDF file's table of contents (ToC).
After choosing a file in a file selection dialog, its ToC is displayed
in a grid, together with an image of the currently displayed PDF page.
-ToC entries can be edited, added, deleted and moved.
-The thus modified PDF can be saved elsewhere or replace the original file.
+Entries in the grid can be edited, added, duplicated, deleted and moved.
+Permanent changes to the underlying file are made only when the SAVE button is
+pressed.
The overall screen layout is as follows:
@@ -54,21 +63,37 @@
'''
import os, sys
-import tempfile
import wx
import wx.grid as gridlib
import wx.lib.gridmovers as gridmovers
-import PyPDF2 # only used for output (make_pdf)
-import fitz
+import fitz # = PyMuPDF
+ENCODING = "latin-1" # used for item title only
+
+def getint(v):
+ import types
+ # extract digits from a string to form an integer
+ try:
+ return int(v)
+ except ValueError:
+ pass
+ if not isinstance(v, types.StringTypes):
+ return 0
+ a = "0"
+ for d in v:
+ if d in "0123456789":
+ a += d
+ return int(a)
+
#==============================================================================
# define scale factor for displaying page images (20% larger)
#==============================================================================
-scaling = fitz.Matrix(1, 1).preScale(1.2, 1.2)
+scaling = fitz.Matrix(1.2, 1.2)
#==============================================================================
# just abbreviations
#==============================================================================
defPos = wx.DefaultPosition
defSiz = wx.DefaultSize
+khaki = wx.Colour(240, 230, 140)
#==============================================================================
# convenience class for storing information across functions
@@ -79,38 +104,24 @@
self.meta = {} # PDF meta information
self.seiten = 0 # max pages
self.inhalt = [] # table of contents storage
- self.oldPage = 0 # last displayed page number
self.file = None # pdf filename
- # we use temp png files for buffering already displayed pages
- tmppic = tempfile.NamedTemporaryFile(suffix = ".png",
- delete = False)
- tmppic.file.close() # created temp file for PNG images
- self.pic = tmppic.name # save its filename
- self.pics = self.pic[:-4] + "%s.png" # mask for other PDF pages
- # list of existing temp png files
- self.pic_pages = [] # saves displayed page pic filenames
- self.pic_pages.append(self.pic) # store the one just created
-
- def TempPDF(self, dir = None):
-#==============================================================================
-# temp PDF for the save process (only needed when infile = outfile)
-#==============================================================================
- temppdf = tempfile.NamedTemporaryFile(suffix = ".pdf",
- dir = dir, delete = False)
- self.opdfname = temppdf.name
- self.opdffile = temppdf.file
-
-#==============================================================================
-# render a PDF page and store image in png file
-#==============================================================================
-def pdf_show(datei, seite):
- page_idx = int(seite) - 1
- page = PDFcfg.doc.loadPage(page_idx) # get the page
- pix = fitz.GetPixmap(page, # create its Pixmap
- matrix = scaling, # and scale it
- colorspace = "RGB")
- pix.writePNG(datei) # write it ot temp file
- return
+ self.oldpage = 0 # stores displayed page number
+
+#==============================================================================
+# render a PDF page and return wx.Bitmap
+#==============================================================================
+def pdf_show(seite):
+ page_idx = getint(seite) - 1
+ pix = PDFcfg.doc.getPagePixmap(page_idx, matrix = scaling)
+ # the following method returns just RGB data - no alpha bytes
+ # this seems to be required in Windows versions of wx.
+ # on other platforms try instead:
+ #bmp = wx.BitmapfromBufferRGBA(pix.w, pix.h, pix.samples)
+ a = pix.samplesRGB() # samples without alpha bytes
+ bmp = wx.BitmapFromBuffer(pix.w, pix.h, a)
+ pix = None
+ a = None
+ return bmp
#==============================================================================
# PDFTable = a tabular grid class in wx
@@ -125,11 +136,11 @@
gridlib.GRID_VALUE_NUMBER,
]
# initial load of table with outline data
- # each line consists of [lvl, title page]
+ # each line consists of [lvl, title, page]
# for display, we "indent" the title with spaces
self.data = [[PDFcfg.inhalt[i][0], # indentation level
" "*(PDFcfg.inhalt[i][0] -1) + \
- PDFcfg.inhalt[i][1],
+ PDFcfg.inhalt[i][1].decode("utf-8","ignore"), # title
PDFcfg.inhalt[i][2]] \
for i in range(len(PDFcfg.inhalt))]
if not PDFcfg.inhalt:
@@ -176,7 +187,7 @@
#==============================================================================
# set row names (just row counters in our case). Only needed, because we have
-# row-based operations (dragging, duplicating) and these require some label.
+# row-based operations (dragging, duplicating), and these require some label.
#==============================================================================
def GetRowLabelValue(self,row):
return str(row +1)
@@ -225,7 +236,7 @@
if grid:
if self.cur_row in range(len(self.data)): # insert in the middle?
self.data.insert(self.cur_row, zeile)
- grid.BeginBatch() # inform grid
+ grid.BeginBatch() # inform the grid
msg = gridlib.GridTableMessage(self,
gridlib.GRIDTABLE_NOTIFY_ROWS_INSERTED, self.cur_row, 1)
grid.ProcessTableMessage(msg)
@@ -261,7 +272,7 @@
grid = self.GetView()
if grid:
del self.data[row]
- grid.BeginBatch() # inform grid
+ grid.BeginBatch() # inform the grid
msg = gridlib.GridTableMessage(self,
gridlib.GRIDTABLE_NOTIFY_ROWS_DELETED, row, 1)
grid.ProcessTableMessage(msg)
@@ -403,17 +414,18 @@
class PDFDialog (wx.Dialog):
def __init__(self, parent):
wx.Dialog.__init__ (self, parent, id = wx.ID_ANY,
- title = u"Maintain the PDF Table of Contents",
+ title = "Maintain the Table of Contents",
pos = defPos, size = defSiz,
style = wx.CAPTION|wx.CLOSE_BOX|
wx.DEFAULT_DIALOG_STYLE|
wx.MAXIMIZE_BOX|wx.MINIMIZE_BOX|
wx.RESIZE_BORDER)
+ self.SetBackgroundColour(khaki)
# maximize the screen
#self.Maximize()
# alternatively, try more scrutiny:
- width = wx.GetDisplaySize()[0]-30 # define maximum width
+ width = wx.GetDisplaySize()[0]-500 # define maximum width
height = wx.GetDisplaySize()[1]-35 # define maximum height
self.SetSize(wx.Size(width, height))
#==============================================================================
@@ -421,7 +433,7 @@
#==============================================================================
self.szr10 = wx.BoxSizer(wx.HORIZONTAL)
- self.btn_neu = wx.Button(self, wx.ID_ANY, u"New Row",
+ self.btn_neu = wx.Button(self, wx.ID_ANY, "New Row",
defPos, defSiz, 0)
self.szr10.Add(self.btn_neu, 0, wx.ALIGN_CENTER|wx.ALL, 5)
@@ -446,7 +458,7 @@
self.szr30.SetFlexibleDirection(wx.BOTH)
self.szr30.SetNonFlexibleGrowMode(wx.FLEX_GROWMODE_SPECIFIED)
- self.tx_input = wx.StaticText(self, wx.ID_ANY, u"Input:",
+ self.tx_input = wx.StaticText(self, wx.ID_ANY, "Input:",
defPos, defSiz, 0)
self.tx_input.Wrap(-1)
self.szr30.Add(self.tx_input, 0, wx.ALIGN_CENTER, 5)
@@ -457,18 +469,15 @@
self.tx_eindat.Wrap(-1)
self.szr30.Add(self.tx_eindat, 0, wx.ALL, 5)
- self.tx_ausdat = wx.StaticText(self, wx.ID_ANY, u"Output:",
+ self.tx_ausdat = wx.StaticText(self, wx.ID_ANY, "Output:",
defPos, defSiz, 0)
self.tx_ausdat.Wrap(-1)
self.szr30.Add(self.tx_ausdat, 0, wx.ALIGN_CENTER, 5)
self.btn_aus = wx.FilePickerCtrl(self, wx.ID_ANY,
- PDFcfg.file,
- u"set output file",
- u"*.pdf",
+ PDFcfg.file, "set output file", "*.pdf",
defPos, wx.Size(480,-1),
- wx.FLP_OVERWRITE_PROMPT|
- wx.FLP_SAVE|
+ wx.FLP_OVERWRITE_PROMPT|wx.FLP_SAVE|
wx.FLP_USE_TEXTCTRL)
self.szr30.Add(self.btn_aus, 0, wx.ALL, 5)
self.tx_autor = wx.StaticText(self, wx.ID_ANY, "Author:",
@@ -505,13 +514,13 @@
# Sizer 31: check data
#==============================================================================
self.szr31 = wx.FlexGridSizer(1, 2, 0, 0)
- self.btn_chk = wx.Button(self, wx.ID_ANY, u"Check Data",
+ self.btn_chk = wx.Button(self, wx.ID_ANY, "Check Data",
defPos, defSiz, 0)
self.szr31.Add(self.btn_chk, 0, wx.ALIGN_TOP|wx.ALL, 5)
self.msg = wx.StaticText(self, wx.ID_ANY, "Before data can be saved, "\
"they must be checked with this button.\n"\
"Warning: Any original 'Output' file will be overwritten, "\
- "once you press OK!",
+ "once you press SAVE!",
defPos, defSiz, 0)
self.msg.Wrap(-1)
self.szr31.Add(self.msg, 0, wx.ALL, 5)
@@ -520,7 +529,7 @@
# Sizer 40: OK / Cancel
#==============================================================================
self.szr40 = wx.StdDialogButtonSizer()
- self.szr40OK = wx.Button(self, wx.ID_OK)
+ self.szr40OK = wx.Button(self, wx.ID_OK, label="SAVE")
self.szr40OK.Disable()
self.szr40.AddButton(self.szr40OK)
self.szr40Cancel = wx.Button(self, wx.ID_CANCEL)
@@ -560,17 +569,17 @@
ri_szr20 = wx.BoxSizer(wx.HORIZONTAL) # defines the control line
- self.btn_vor = wx.Button(self, wx.ID_ANY, u"forward",
+ self.btn_vor = wx.Button(self, wx.ID_ANY, "forward",
defPos, defSiz, 0)
ri_szr20.Add(self.btn_vor, 0, wx.ALL, 5)
- self.btn_zur = wx.Button(self, wx.ID_ANY, u"backward",
+ self.btn_zur = wx.Button(self, wx.ID_ANY, "backward",
defPos, defSiz, 0)
ri_szr20.Add(self.btn_zur, 0, wx.ALL, 5)
- self.zuSeite = wx.TextCtrl(self, wx.ID_ANY, u"1",
+ self.zuSeite = wx.TextCtrl(self, wx.ID_ANY, "1",
defPos, wx.Size(40, -1),
- wx.TE_PROCESS_ENTER)
+ wx.TE_PROCESS_ENTER|wx.TE_RIGHT)
ri_szr20.Add(self.zuSeite, 0, wx.ALL, 5)
max_pages = wx.StaticText(self, wx.ID_ANY,
@@ -582,9 +591,8 @@
ri_szr.Add(ri_szr20, 0, wx.EXPAND, 5)
# define the bitmap for the pdf image ...
- self.PDFbild = wx.StaticBitmap(self, wx.ID_ANY,
- wx.Bitmap(PDFcfg.pic,
- wx.BITMAP_TYPE_PNG),
+ bmp = pdf_show(1)
+ self.PDFbild = wx.StaticBitmap(self, wx.ID_ANY, bmp,
defPos, defSiz, wx.BORDER_NONE)
# ... and add it to the vertical sizer
ri_szr.Add(self.PDFbild, 0, wx.ALL, 0)
@@ -608,17 +616,27 @@
self.btn_vor.Bind(wx.EVT_BUTTON, self.forwPage) # "forward"
self.btn_zur.Bind(wx.EVT_BUTTON, self.backPage) # "backward"
self.zuSeite.Bind(wx.EVT_TEXT_ENTER, self.gotoPage) # "page number"
+ self.PDFbild.Bind(wx.EVT_MOUSEWHEEL, self.OnMouseWheel) # mouse scroll
def __del__(self):
pass
+ def OnMouseWheel(self, event):
+ # process wheel as paging operations
+ d = event.GetWheelRotation() # int indicating direction
+ if d < 0:
+ self.forwPage(event)
+ elif d > 0:
+ self.backPage(event)
+ return
+
def forwPage(self, event):
- seite = int(self.zuSeite.Value) + 1
+ seite = getint(self.zuSeite.Value) + 1
PicRefresh(seite)
event.Skip()
def backPage(self, event):
- seite = int(self.zuSeite.Value) - 1
+ seite = getint(self.zuSeite.Value) - 1
PicRefresh(seite)
event.Skip()
@@ -667,41 +685,35 @@
self.msg.Label = "row %s: missing title" % (str(i+1),)
break
+ if valide and (self.btn_aus.GetPath() == PDFcfg.file):
+ if PDFcfg.doc.openErrCode > 0 or PDFcfg.doc.needsPass == 1:
+ valide = False
+ self.msg.Label = "repaired or encrypted document - choose a different Output"
+
if not valide:
self.szr40OK.Disable()
else:
self.szr40OK.Enable()
self.Layout()
- self.Centre(wx.BOTH)
#==============================================================================
# display a PDF page
#==============================================================================
def PicRefresh(seite):
- i_seite = int(seite)
+ i_seite = getint(seite)
i_seite = max(1, i_seite) # ensure page# is within boundaries
i_seite = min(PDFcfg.seiten, i_seite)
dlg.zuSeite.Value = str(i_seite) # set page number in dialog fields
-
- if i_seite == PDFcfg.oldPage: # same as last page? do nothing
+ if PDFcfg.oldpage == i_seite:
return
-
- PDFcfg.oldPage = i_seite # save this page number in memory
-
- datei = PDFcfg.pics % (i_seite,) # generate a temp PNG filename
-
- if datei in PDFcfg.pic_pages: # does this file exist already?
- pass
- else:
- PDFcfg.pic = datei # memorize filename
- pdf_show(datei, i_seite) # save PDF page to this file
- PDFcfg.pic_pages.append(datei) # put its name into the list
-
- file_bm = wx.Bitmap(datei, wx.BITMAP_TYPE_PNG)
- dlg.PDFbild.SetSize(file_bm.Size)
- dlg.PDFbild.SetBitmap(file_bm)
+ PDFcfg.oldpage = i_seite
+
+ bmp = pdf_show(i_seite)
+ dlg.PDFbild.SetSize(bmp.Size)
+ dlg.PDFbild.SetBitmap(bmp)
dlg.PDFbild.Refresh(True)
+ bmp = None
dlg.Layout()
#==============================================================================
@@ -716,125 +728,75 @@
# Read PDF document information
#==============================================================================
def getPDFinfo():
- PDFcfg.doc = fitz.Document(PDFcfg.file)
- PDFcfg.inhalt = fitz.GetToC(PDFcfg.doc)
+ PDFcfg.doc = fitz.open(PDFcfg.file)
+ if PDFcfg.doc.needsPass:
+ decrypt_doc()
+ if PDFcfg.doc.isEncrypted:
+ return True
+ PDFcfg.inhalt = PDFcfg.doc.getToC()
PDFcfg.seiten = PDFcfg.doc.pageCount
PDFmeta = {"author":"", "title":"", "subject":""}
- for key in PDFcfg.doc.metadata:
- wert = PDFcfg.doc.metadata[key]
+ for key, wert in PDFcfg.doc.metadata.items():
if wert:
- PDFmeta[key] = wert.decode("utf-8")
+ PDFmeta[key] = wert.decode("utf-8", "ignore")
else:
PDFmeta[key] = ""
PDFcfg.meta = PDFmeta
- return PDFcfg.doc.needsPass
+ return False
+
+def decrypt_doc():
+ # let user enter document password
+ pw = None
+ dlg = wx.TextEntryDialog(None, 'Please enter password below:',
+ 'Document is password protected', '',
+ style = wx.TextEntryDialogStyle|wx.TE_PASSWORD)
+ while pw is None:
+ rc = dlg.ShowModal()
+ if rc == wx.ID_OK:
+ pw = str(dlg.GetValue().encode("utf-8"))
+ PDFcfg.doc.authenticate(pw)
+ else:
+ return
+ if PDFcfg.doc.isEncrypted:
+ pw = None
+ dlg.SetTitle("Wrong password. Enter correct password or cancel.")
+ return
#==============================================================================
# Write the changed PDF file
#============================================================================
def make_pdf(dlg):
- # create a PDF compatible timestamp
- cdate = wx.DateTime.Now().Format("D:%Y%m%d%H%M%S-04'30'")
- PDFmeta = {"/Creator":"MuPDF_OLedit.py",
- "/Producer":"PyMuPDF, PyPDF2",
- "/CreationDate": cdate,
- "/ModDate": cdate,
- "/Title":dlg.austit.Value,
- "/Author":dlg.ausaut.Value,
- "/Subject":dlg.aussub.Value}
-
-#==============================================================================
-# We need PyPDF2 for writing the updated PDF file.
-# PdfFileMerger would have been more practical (and perhaps faster?), but it
-# contains a bug in its addBookmark method (which is amazingly different from
-# the method with the same name in the PdfFileWriter class).
-#==============================================================================
- infile = open(PDFcfg.file, "rb")
- PDFif = PyPDF2.PdfFileReader(infile)
- PDFof = PyPDF2.PdfFileWriter()
- for p in range(PDFcfg.seiten): # first just copy all pages to output
- page = PDFif.getPage(p)
- # this obviously just means storing a pointer to the page somewhere
- PDFof.addPage(page)
-
-#==============================================================================
-# add the meta data
-#==============================================================================
- PDFof.addMetadata(PDFmeta)
-#==============================================================================
-# lvl_tab stores last bookmark of indent level corresponding to index - 1
-#==============================================================================
- try:
- lvl_tab = [0] * max([int(z[0]) for z in dlg.szr20.Table.data])
- except:
- lvl_tab = []
+ cdate = wx.DateTime.Now().Format("D:%Y%m%d%H%M%S-04'00'")
+ PDFmeta = {"creator":"PDFoutline.py",
+ "producer":"PyMuPDF",
+ "creationDate": cdate,
+ "modDate": cdate,
+ "title":dlg.austit.Value,
+ "author":dlg.ausaut.Value,
+ "subject":dlg.aussub.Value}
+
+ PDFcfg.doc.setMetadata(PDFmeta) # set new metadata
+ newtoc = []
#==============================================================================
# store our outline entries as bookmarks
#==============================================================================
for z in dlg.szr20.Table.data:
lvl = int(z[0])
- pag = int(z[2]) - 1
+ pno = int(z[2])
tit = z[1].strip()
- tit = tit.encode("latin-1", "replace")
- if lvl == 1: # no parent if level 1
- bm = PDFof.addBookmark(tit, pag, None, None, False, False, "/Fit")
- lvl_tab[0] = bm # memorize it: serves as parent!
- else:
- # parent = last entry of next higher level
- bm = PDFof.addBookmark(tit, pag, lvl_tab[lvl - 2],
- None, False, False, "/Fit")
- lvl_tab[lvl - 1] = bm # memorize it: serves as parent!
-#==============================================================================
-# before saving anything, check the outfile situation
-#==============================================================================
+ tit = tit.encode(ENCODING, "ignore")
+ newtoc.append([lvl, tit, pno])
+
+ PDFcfg.doc.setToC(newtoc)
+
outfile = dlg.btn_aus.GetPath() # get dir & name of file in screen
- outfile_dir, outfile_name = os.path.split(outfile)
-
- if outfile != PDFcfg.file: # if outfile != input file
- PDFof_fle = open(dlg.btn_aus.GetPath(), "wb")
+
+ if outfile == PDFcfg.file:
+ PDFcfg.doc.save(outfile, incremental=True)
else: # equal: replace input file
- PDFcfg.TempPDF(dir = outfile_dir) # first create temp file
- PDFof_fle = PDFcfg.opdffile # use it as output
-
- PDFof.write(PDFof_fle) # write new content to it
- infile.close() # close input file
- PDFof_fle.close() # close output file
-
- if outfile != PDFcfg.file: # done if output != input
- return
-
- # free MuPDF resources, because the input must be closed if overwritten
- PDFcfg.doc.close()
-
- # remove the old input file, rename temp file to input file name
- try:
- os.remove(PDFcfg.file)
- os.rename(PDFcfg.opdfname, PDFcfg.file)
- return
- except:
- pass
-#==============================================================================
-# Input file is in use, save the precious work to another name
-#==============================================================================
- new_file = outfile
- msg = "Input file is still in use, choose another name"
- while new_file == outfile:
- dlg = wx.FileDialog(None,
- message = msg,
- defaultDir = outfile_dir, defaultFile = outfile_name,
- style=wx.SAVE)
- rc = dlg.ShowModal()
- if rc != wx.ID_OK: # user is giving up, so do we
- os.remove(PDFcfg.opdfname) # remove the temp file
- return
- new_file = dlg.GetPath()
- if os.path.exists(new_file):
- new_file = outfile
- msg = "File must not exist - choose another name"
- dlg.Destroy()
-
- os.rename(PDFcfg.opdfname, new_file)
-
+ PDFcfg.doc.save(outfile, garbage=3)
+
+ return
#==============================================================================
#
@@ -844,7 +806,7 @@
if wx.VERSION[0] >= 3:
pass
else:
- print "need wx version of at least 3"
+ print "need wxPython version 3.0 or higher"
sys.exit(1)
app = None
app = wx.App()
@@ -877,31 +839,13 @@
# destroy this dialog
dlg.Destroy()
-if infile:
- PDFcfg = PDFconfig() # create our PDF descriptor scratchpad
+if infile: # if we have a filename ...
+ PDFcfg = PDFconfig() # create our PDF scratchpad
PDFcfg.file = infile
-#==============================================================================
-# Generate PDF page 1 image
-#==============================================================================
if getPDFinfo() == 0: # input is not encrypted
- pdf_show(PDFcfg.pic, 1)
- PDFcfg.oldPage = 1
- dlg = PDFDialog(None)
-
-#==============================================================================
-# Show dialog
-#==============================================================================
- rc = dlg.ShowModal()
-#==============================================================================
-# Generate modified PDF file
-#==============================================================================
- if rc == wx.ID_OK: # output PDF only if OK pressed
+ dlg = PDFDialog(None) # create dialog
+ rc = dlg.ShowModal() # show dialog
+ if rc == wx.ID_OK: # output PDF if SAVE pressed
make_pdf(dlg)
dlg.Destroy()
app = None
- # delete all page images accumulated during the session
- for datei in PDFcfg.pic_pages:
- os.remove(datei)
- else:
- wx.MessageBox("Currently cannot edit encrypted file\n" + infile,
- "Encrypted File Error")