公司需要将PDF转为图片,在网上查找了下发现有篇关于转换的帖子很不错。
具体地址:http://blog.csdn.net/shi0090/article/details/7262199。
为了稳定我选择了使用【Acrobat.dll】,通过Adobe官方提供的接口,实现PDF转图片。
优点是官方提供,稳定性高但却面临几个问题:
第一:需要安装安装Adobe Acrobat X Pro,且不支持多线程。
第二:web服务是不能获取剪贴板上的内容(在winfrom下可以通过剪贴板获取到转换后的图片)
因为我需要在web服务中去使用该方法,所以只能放弃,选择了之前博主说的较稳定的2S.Components.PDFRender4NET.dll
因为需要打水印,所以我从博主的资源里下了个破解版无水印的dll,然后在拿到图片后进行了加水印操作。
废话不多说 附代码:
先是web服务下使用2S.Components.PDFRender4NET.dll
using O2S.Components.PDFRender4NET;
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Drawing;
using System.Drawing.Imaging;
using System.IO;
using System.Linq;
using System.Web;
using System.Web.Services;
///
/// 将PDF文档转换为图片的方法
///
/// PDF文件路径
/// 图片输出路径
/// 生成图片的名字
/// 从PDF文档的第几页开始转换
/// 从PDF文档的第几页开始停止转换
/// 设置所需图片格式
/// 设置图片的清晰度,数字越大越清晰
/// 设置水印
public static void PDF2Images(string pdfInputPath, string imageOutputPath,
string imageName, int startPageNum, int endPageNum, ImageFormat imageFormat, float resolution, string mark)
{
//打开PDF
PDFFile pdfFile = PDFFile.Open(pdfInputPath);
//判断输出路径是否存在,如果不存在则创建
if (!Directory.Exists(imageOutputPath))
{
Directory.CreateDirectory(imageOutputPath);
}
//判断开始页数 如果为0 则默认从第一页开始
if (startPageNum <= 0)
{
startPageNum = 1;
}
//判断PDF总页数
if (endPageNum < pdfFile.PageCount)
{
endPageNum = pdfFile.PageCount;
}
//如果参数页参数传反,自动纠正
if (startPageNum > endPageNum)
{
int tempPageNum = startPageNum;
startPageNum = endPageNum;
endPageNum = startPageNum;
}
//默认图片格式
if (imageFormat == null) { imageFormat = ImageFormat.Jpeg; }
//根据总页数进行遍历
for (int i = startPageNum; i < endPageNum; i++)
{
//获取图片对象
Bitmap pageImage = pdfFile.GetPageImage(i, 56 * resolution);
//设置水印
Graphics g = Graphics.FromImage(pageImage);
Font font = new Font("Verdana", 16f, FontStyle.Bold, GraphicsUnit.Point);
g.DrawString(mark, font, Brushes.Red, 2, 1);
font.Dispose();
//将图片按照指定格式保存到本地
pageImage.Save(imageOutputPath + i.ToString() + "." + imageFormat.ToString(), imageFormat);
pageImage.Dispose();
}
pdfFile.Dispose();
}
下面是在winfrom下使用Acrobat.dll
#region 将pdf转换为img图片
///
/// 将PDF文档转换为图片的方法,你可以像这样调用该方法:ConvertPDF2Image("F:\\A.pdf", "F:\\", "A", 0, 0, null, 0);
/// 因为大多数的参数都有默认值,startPageNum默认值为1,endPageNum默认值为总页数,
/// imageFormat默认值为ImageFormat.Jpeg,resolution默认值为1
///
/// PDF文件路径
/// 图片输出路径
/// 图片的名字,不需要带扩展名
/// 从PDF文档的第几页开始转换,默认值为1
/// 从PDF文档的第几页开始停止转换,默认值为PDF总页数
/// 设置所需图片格式
/// 设置图片的分辨率,数字越大越清晰,默认值为1
public void ConvertPDF2Image(string pdfInputPath, string imageOutputPath,
string imageName, int startPageNum, int endPageNum, ImageFormat imageFormat, double resolution)
{
Acrobat.CAcroPDDoc pdfDoc = null;
Acrobat.CAcroPDPage pdfPage = null;
Acrobat.CAcroRect pdfRect = null;
Acrobat.CAcroPoint pdfPoint = null;
// Create the document (Can only create the AcroExch.PDDoc object using late-binding)
// Note using VisualBasic helper functions, have to add reference to DLL
pdfDoc = (Acrobat.CAcroPDDoc)Microsoft.VisualBasic.Interaction.CreateObject("AcroExch.PDDoc", "");
// validate parameter
if (!pdfDoc.Open(pdfInputPath)) { throw new FileNotFoundException(); }
if (!Directory.Exists(imageOutputPath)) { Directory.CreateDirectory(imageOutputPath); }
if (startPageNum <= 0) { startPageNum = 1; }
if (endPageNum > pdfDoc.GetNumPages() || endPageNum <= 0) { endPageNum = pdfDoc.GetNumPages(); }
if (startPageNum > endPageNum) { int tempPageNum = startPageNum; startPageNum = endPageNum; endPageNum = startPageNum; }
if (imageFormat == null) { imageFormat = ImageFormat.Jpeg; }
if (resolution <= 0) { resolution = 1; }
// start to convert each page
for (int i = startPageNum; i <= endPageNum; i++)
{
pdfPage = (Acrobat.CAcroPDPage)pdfDoc.AcquirePage(i - 1);
pdfPoint = (Acrobat.CAcroPoint)pdfPage.GetSize();
pdfRect = (Acrobat.CAcroRect)Microsoft.VisualBasic.Interaction.CreateObject("AcroExch.Rect", "");
int imgWidth = (int)((double)pdfPoint.x * resolution);
int imgHeight = (int)((double)pdfPoint.y * resolution);
pdfRect.Left = 0;
pdfRect.right = (short)imgWidth;
pdfRect.Top = 0;
pdfRect.bottom = (short)imgHeight;
// Render to clipboard, scaled by 100 percent (ie. original size)
// Even though we want a smaller image, better for us to scale in .NET
// than Acrobat as it would greek out small text
pdfPage.CopyToClipboard(pdfRect, 0, 0, (short)(100 * resolution));
IDataObject clipboardData = Clipboard.GetDataObject();
if (clipboardData.GetDataPresent(DataFormats.Bitmap))
{
Bitmap pdfBitmap = (Bitmap)clipboardData.GetData(DataFormats.Bitmap);
pdfBitmap.Save(Path.Combine(imageOutputPath, "") + i.ToString() + imageName + "." + imageFormat.ToString(), imageFormat);
pdfBitmap.Dispose();
}
}
pdfDoc.Close();
Marshal.ReleaseComObject(pdfPage);
Marshal.ReleaseComObject(pdfRect);
Marshal.ReleaseComObject(pdfDoc);
Marshal.ReleaseComObject(pdfPoint);
}
#endregion
自定义水印Demo:http://download.csdn.net/detail/flyaurora/8412021