python-pdfbox icon indicating copy to clipboard operation
python-pdfbox copied to clipboard

it just hang on win10

Open SeekPoint opened this issue 4 years ago • 2 comments

SeekPoint avatar Feb 17 '20 13:02 SeekPoint

Can you provide more information? What version of python-pdfbox, Python, etc. are you using? How are you invoking python-pdfbox?

lebedov avatar Feb 18 '20 00:02 lebedov

after run 'pip install python-pdfbox' on win10,

then:

import pdfbox p = pdfbox.PDFBox() p.extract_text('/path/to/my_file.pdf') # writes text to /path/to/my_file.txt p.pdf_to_images('/path/to/my_file.pdf') # writes images to /path/to/my_file1.jpg, /path/to/my_file2.jpg, etc. p.extract_images('/path/to/my_file.pdf') # writes images to /path/to/my_file-1.png, /path/to/my_file-2.png, etc.

SeekPoint avatar Feb 18 '20 04:02 SeekPoint