RedJ

Results 5 comments of RedJ

To be in accordance with the documentation of k2pdfopt, can I suggest you to modify the labels and the order of the fields "_Crop Margins (in)_" : ``` leftMarginTextLabel =...

I investigate more on this topic and it seems that you are confusing between cropbox and margin: - margin: https://willus.com/k2pdfopt/help/borders.shtml - cropbox: https://willus.com/k2pdfopt/help/options.shtml (looking for ``) Cropbox using left, top,...

Another workaround is to comment the line : `state='readonly',` For exemple (about line 520) : ``` widthTextLabel = Label(requiredInputFrame, text='Width') widthTextLabel.grid( column=0, row=required_frame_row_num, sticky=N+W, pady=0, padx=5, ) widthSpinBox = Spinbox(...

I found a solution (of a workaround… without extensive test, I'm not sure). If you add a "+" on the second line of `arg = ()`, the generated command line...

In the function `on_command_open_pdf_file_cb()` (about line 410), the first line is the supported format : ``` formats = [('PDF files', '*.pdf')] ``` You can add yourself the djvu extension like...