有很多免费的图书馆可以将 pdf 转换为图像。
string file = "D:/test.pdf";
string image = "D:\\test.png";
try
{
GflAx.GflAxClass g = new GflAx.GflAxClass();
g.EpsDpi = 150;
g.Page = 1;
g.LoadBitmap(file);
g.SaveFormat = GflAx.AX_SaveFormats.AX_PNG;
g.SaveBitmap(image);
MessageBox.Show(this, "PDF to PNG conversion ended");
}
catch (Exception ex) {
MessageBox.Show(this, "GflAx error: " + ex.Message);
}
另一个免费库,例如 http://code.google.com/p/lib-pdf/
http://www.codeproject.com/Articles/32274/How-To-Convert-PDF-to-Image-Using-Ghostscript-API
http://www.codeproject.com/Articles/57100/Simple-and-Free-PDF-to-Image-Conversion
http://www.codeproject.com/Articles/42287/Convert-PDF-pages-to-image-files-using-the-Solid-F
我有 2 个要求,例如如果我的 pdf 文件有 20 页,那么我需要使用的库将为 20 页生成 20 张图像……意味着每次每页一张图像并将这些图像保存在文件夹中。
另一个要求是,如果我发送第 no 页,那么它将仅为该页生成图像...请指导我需要使用哪个库来满足我的要求。
谢谢