Skip to content

Commit

Permalink
Change extracted image's suffix to from "_image_" to "_IMG_"
Browse files Browse the repository at this point in the history
  • Loading branch information
ronanpaixao committed Aug 12, 2019
1 parent 368f71a commit 56e7012
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pypdftk.py
Original file line number Diff line number Diff line change
Expand Up @@ -651,7 +651,7 @@ def on_btnExtractImages_clicked(self):
supported_files = self.tr("Image file prefix (*)")
try:
filename = self.listFiles.item(0).data(QtCore.Qt.ToolTipRole)
filename = osp.splitext(filename)[0] + '_image_'
filename = osp.splitext(filename)[0] + '_IMG_'
except:
filename = ""
filename = QtWidgets.QFileDialog.getSaveFileName(self,
Expand Down

0 comments on commit 56e7012

Please sign in to comment.