首页| JavaScript| HTML/CSS| Matlab| PHP| Python| Java| C/C++/VC++| C#| ASP| 其他|
购买积分 购买会员 激活码充值

您现在的位置是:虫虫源码 > C/C++/VC++ > lib-pdf

lib-pdf

  • 资源大小:4.44 MB
  • 上传时间:2021-06-30
  • 下载次数:0次
  • 浏览次数:0次
  • 资源积分:1积分
  • 标      签:

资 源 简 介

LibPdf This library converts converts PDF file to an image. Supported image formats are PNG and BMP, but you can easily add more. This library uses poppler-qt4 library with QT frontend. Basically it"s managed C++ wrapper over limited subpart of poppler-qt4 functionality. Usage example: ``` using (FileStream file = File.OpenRead(@"..path opdffile.pdf")) // in file { var bytes = new byte[file.Length]; file.Read(bytes, 0, bytes.Length); using (var pdf = new LibPdf(bytes)) { byte[] pngBytes = pdf.GetImage(0,ImageType.PNG); // image type using (var outFile = File.Create(@"..path opdffile.png")) // out file { outFile.Write(pngBytes, 0, pngBytes.Length); } } } ``` Installation and configuration

文 件 列 表

poppler
bin
include
lib
share
bin
libgcc_s_dw2-1.dll
libopenjpeg.dll
libpoppler-cpp.dll
libpoppler.dll
libstdc++-6.dll
libz.dll
msys-1.0.dll
pdfdetach.exe
pdffonts.exe
pdfimages.exe
pdfinfo.exe
pdfseparate.exe
pdftohtml.exe
pdftoppm.exe
pdftops.exe
pdftotext.exe
pdfunite.exe
VIP VIP
0.176654s