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

Python binding to Poppler-cpp pdf library

Results 22 python-poppler issues
Sort by recently updated
recently updated
newest added

Hi, Thank you for this amazing work. Recently I was working with some pdf and poppler was working great for most of them but for some of those pdf I...

Hello @cbrunet . Excellent tool. This is one of the fastest ways to generate PDF images. Thanks for building this. I have tried python-poppler to render a PDF page, following...

Follow up for https://github.com/cbrunet/python-poppler/pull/61, issue https://github.com/cbrunet/python-poppler/issues/49. - add a file error_log.pdf which produces an error when text is read or an image is rendered - add a fixture document_with_error() opening...

I'm getting this error when importing the poppler module. any help is greatly appreciated

Hello there. I have added some Python type hints and a few type checks. Please let me know if I should change anything. Regards, Farooq.

Ok, so I'm putzing about trying to get this to build on windows - Install toolchain and dependencies - You'll need visual studio of the appropriate version for your python...

help wanted

I'm trying to parse a PDF that contains Chinese characters. The text is extracted okay, but when I try to access fonts, I get the following error: ```python >>> box.get_font_name()...

poppler-cpp

The workflow of one of my scripts relies on calling `subprocess.run` for each pdf page to get its respective pdffonts output. Those calls are expensive, so I'm looking forward to...

question
poppler-cpp

I want to use the ``EmbeddedFile`` class. However, I get a segmentation fault. from poppler import load_from_file pdf_document = load_from_file("Portfolio.pdf") for file in pdf_document.embedded_files(): print(file.name) What kind of information could...

Firstly, thanks for your contribution thus far. I've been using Poppler for a while now and it is not clear how to sort the boxes that we receive. I noticed...