What C++ library can I use to convert a PDF to an image on windows?

后端 未结 2 640
一向
一向 2021-02-08 23:33

I am working on a project in which I need to analyze images; the primary source of these images is the webcam, but recently we\'ve been ask to add support for uploaded files and

2条回答
  •  粉色の甜心
    2021-02-09 00:15

    • With swftools http://wiki.swftools.org/

    Example:

    pdf2swf --pages 1 -T9 PDF_FILE.pdf -o temp.swf
    swfrender temp.swf --output 1.png
    
    • With poppler

    Example using Qt http://bit.ly/8UksK6

提交回复
热议问题