> > > "org.apache.pdfbox.printing.PDFPageable.PDFPageable(PDDocument)" does > not work as expected when printing a specific page using the print dialog.
> 3. Type "2" in both the "from" and "to" text boxes. > > 4. Click Print. I was able to confirm that page-rage does not work as expected, it prints nothing. I tested on a physical printer (inkjet) as well as a virtual printer (PDFwriter). I tested this same code on Windows and the bug does not occur, page 2 is printed. I tested this code against my own app and it works on macOS. This is because I do not rely on the print dialog but rather provide my own PageRanges handling code (using Splitter). This appears to be a bug with either PDFBOX or the JVM. I would recommend baseline testing this bug against another multipage document to see where the bug lies and filing a bug report appropriately. > 5. Notice that the application just quits. "Quit" is ambiguous however assuming you mean "crash"? If so, the crashing is NOT reproducible on my machine. I tested by placing a message dialog after the call to print and it shows every time (Java 11). pJob.print(); JOptionPane.showMessageDialog(null, "Here!"); If your application quits, this may be JVM-specific or macOS-specific with how you package your application.