Edouard Belval
Edouard Belval
Unfortunately, I am afraid that I won't be able to help you much with that as I have no previous experience with `pyinstaller`. As for 300 dpi resolution, you can...
Does anything like that exists in Windows? To my knowledge the only way to make an executable accessible OS-wide is to use the PATH environment variable. The only way to...
You would have to distribute the `libpoppler` dll with the `pdftoppm` executable packaged with your application. In your code you can specify the path with something like `convert_from_path('your_pdf.pdf', poppler_path='.\poppler\bin')`
No need to apologize, it is not obvious. I would advise that you include a step to build `poppler` from source in your CI, but in my experience it is...
Hi! Can you provide the sample PDF and you pdf2image function call. Thanks.
`pdf2image` supports all PDF standards that poppler supports. From my usage I know that PDF, PDF/A and PDF/X do work, but I never tried the others. If I had to...
This is pretty bad. I will change how the version is detected. Thank you for reporting it.
Yes actually, I haven't had time to look at this issue so if you can make a PR I'd appreciate it.
Hmm this is a problematic one because I can't seem to reproduce the issue on Linux. I will try to reproduce it on Windows. If I successfully reproduce the issue...
When you exit the context, the underlying image files are open in your Python process. This causes an issue because the temporary directory deletion cannot take place on Windows as...