0
我有下面的代碼如何PDF文件轉換成PNG(圖像)文件中的QT
QString filePath("x.pdf");
QPrinter printer(QPrinter::HighResolution);
printer.setCreator(PRODUCT_NAME);
printer.setOutputFileName(filePath;
printer.setOutputFormat(QPrinter::PdfFormat);
QPainter painter(&printer);
render(&painter);
我怎麼可以保存這個上面PDF文件x.pdf到使用QT碼PNG文件?
我的理解它僅適用QT5之後,但我的使用qt.4.3.3 – TechEnthusiast
的版本號,也有版本的Qt4。請看這裏:https://people.freedesktop.org/~aacid/docs/qt4/和https://poppler.freedesktop.org/releases.html – trivelt