Questions tagged [poppler]

Poppler is a GPL'd PDF rendering library based on the xpdf-3.0 code base.

290 questions
0
votes
0 answers

I can't get libvips to compile on heroku

I have spent days trying to get the outdated libvips buildpacks working on Heroku. I finally got https://github.com/wwarne/heroku-buildpack-vips to work, but it doesn't seem to have been compiled with libpoppler, so I don't have pdf support which I…
Brandon
  • 1,735
  • 2
  • 22
  • 37
0
votes
0 answers

Poppler installation for Mac OS 10.9

Would you have any idea what I should do to install Poppler on Mac OS X 10.9? FYI I am using Python 3.7 version now. I changed system recently, from Windows to not newest Mac, and some my programms which were working on Windows do not work on my…
Paulina
  • 53
  • 1
  • 8
0
votes
1 answer

Coordinate systems for Poppler/pdftohtml and ImageMagick/convert are different

I converted a PDF to XML using pdftohtml from the Poppler utils. This gives the co-ordinates for the text in the PDF. I also converted PDF to image, using the convert tool from ImageMagick. When I search for the same coordinate in the image I do not…
Bandi
  • 1
  • 1
0
votes
1 answer

Installing the Poppler Gem and getting bundler errors when running the server

I have added and bundled these gems but I keep getting a bundler error cannot load such file -- gobject_introspection.so (LoadError) ruby gem 'poppler', '~> 3.0', '>= 3.0.7' gem "cairo", github: "rcairo/rcairo" gem "gtk3", github:…
Josh
  • 1
  • 2
0
votes
0 answers

CMake Error: CMAKE_MODULE_PATH does not contain FindPoppler.cmake

my working platform is Ubuntu 18.04 LTS. I'm trying to install QCViewer from github. It seems a lot of packages are needed from my installation of QCViewer from source. So, I worked on my way through the github repository, installed all the build…
q999sdyt
  • 1
  • 1
0
votes
1 answer

How to get chars/words/lines/blocks coordinates

I'm doing pdftotext -bbox file.pdf and that produces word-level output. Is there a way to output coordinates on the character/phrase/line/block level? I'm interested in knowing if either the poppler or xpdf version of pdftotext can do this.
0
votes
0 answers

poppler-qt5, MacOS ld: symbol(s) not found for architecture x86_64

I've moved into Qt not so long time ago, and I've got problems with linking libraries. I built the poppler-0.63 version, using the installation guide provided. tar zippedPoppler cd poppler mkdir build cd build cmake ..…
0
votes
1 answer

How to read this pdf form using PyPDF2 in python

https://www.fda.gov/downloads/AboutFDA/ReportsManualsForms/Forms/UCM074728.pdf I'm trying to read this pdf using PyPDF2 or Pdfminer, but it is saying that the File has not been decrypted in Pypdf2 and in pdfminer, it is saying that it can decompress…
user222213
  • 111
  • 1
  • 2
  • 12
0
votes
0 answers

Include Library in my C++ binary - Cmake

I am using the poppler-cpp library in my project. It build & start it correctly, but I need to have popple installed in my system. What is the way to import (include) the poppler library in my project, the aim is to execute it on another linux…
nodeover
  • 301
  • 1
  • 2
  • 11
0
votes
1 answer

Poppler installation

I downloaded the new poppler 0.15 tarball and i built it from source successfully but when trying dpkg -l | grep poppler it outputs ii libpoppler-dev 0.14.3-0ubuntu1.1 PDF rendering…
Wazery
  • 15,394
  • 19
  • 63
  • 95
0
votes
0 answers

Debian Jessie - font € sign is rendered as fi ligature

I have a strange issue where I don't even know how to pinpoint the issue… so I hope someone can help me figure this out I have a node app that fills out pdf invoices. In my development environment (Mac OS) this works fine. When I dockerize my node…
florian norbert bepunkt
  • 2,099
  • 1
  • 21
  • 32
0
votes
0 answers

AWS Elastic Beanstalk install Poppler and Cairo for node module

I have a node app that uses this PDF library: https://github.com/tpisto/pdf-fill-form In the installation instructions it read you should install sudo apt-get install libpoppler-qt5-dev libcairo2-dev On default Beanstalk Amazon Linux distribution I…
0
votes
1 answer

PDF to PS conversion failing using pdftops command on linux

While trying to convert the PDF file to PS(Postscript) using pdftops command on RHEL machine, I am getting below error: pdftops -duplex aa.pdf aa.ps Syntax Error (30576): 4741 extraneous bytes after segment Syntax Error (30576): 4741 extraneous…
smallarv
  • 57
  • 1
  • 2
  • 12
0
votes
0 answers

Qt Pdf Cross-platform PDF reader

I just got in trouble with Poppler. My program compiles for Linux/Windows/MacOS. But it won't compile for Android. Compiler says that there is no qt5-poppler library. Probably I need to use other lib or is there any way to make Poppler work with…
0
votes
1 answer

How to display a PDF file with push a button in gtk3 c code?

I want to display a PDF file when push a button in gtk3 c code. In fact, I want to insert User manual button in Help and when push the button a PDF file show: I insert button (show in figure up) but I can't write code for User manual function to…
user5363744