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

后端 未结 2 638
一向
一向 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

    0 讨论(0)
  • 2021-02-09 00:16

    ImageMagick. Far and away the best library for reading and writing as many formats as possible http://www.imagemagick.org/script/index.php

    0 讨论(0)
提交回复
热议问题