PDF转IMAGE(自定义水印)

<p><pre name="code" class="csharp"><p>公司需要将PDF转为图片,在网上查找了下发现有篇关于转换的帖子很不错。具体地址:http://blog.csdn.net/shi0090/article/details/7262199</p><p>为了稳定我选择了使用<span style="font-family: 'Microsoft YaHei'; font-size: 14px; line-height: 26px;">【Acrobat.dll】,通过Adobe官方提供的接口,实现PDF转图片,优点是官方提供,稳定性高。</span></p><p><span style="font-family: 'Microsoft YaHei'; font-size: 14px; line-height: 26px;">但却面临几个问题,</span></p><p><span style="font-family: 'Microsoft YaHei'; font-size: 14px; line-height: 26px;">第一:需要安装安装Adobe Acrobat X Pro,且不支持多线程。</span></p><p><span style="font-family: 'Microsoft YaHei'; font-size: 14px; line-height: 26px;">第二:web服务是不能获取剪贴板上的内容(在winfrom下可以通过剪贴板获取到转换后的图片)</span></p><p>因为我需要在web服务中去使用该方法,所以只能放弃,选择了之前博主说的<span style="font-family: 'Microsoft YaHei'; font-size: 14px; line-height: 26px;">较稳定的 </span><span style="font-family: 'Microsoft YaHei'; font-size: 14px; line-height: 26px;">O2S.Components.PDFRender4NET.dll</span></p><p><span style="font-family: 'Microsoft YaHei';"><span style="font-size: 14px; line-height: 26px;">因为需要打水印,所以我从博主的资源里下了个破解版无水印的dll,然后在拿到图片后进行了加水印操作。</span></span></p><p><span style="font-family: 'Microsoft YaHei'; font-size: 14px; line-height: 26px;">废话不多说 附代码</span></p><p><span style="font-family: 'Microsoft YaHei'; font-size: 14px; line-height: 26px;"><span style="white-space:pre">	</span>    using O2S.Components.PDFRender4NET;
<span style="white-space:pre">	</span>    using System;
<span style="white-space:pre">	</span>    using System.Collections.Generic;
<span style="white-space:pre">	</span>    using System.Configuration;
<span style="white-space:pre">	</span>    using System.Drawing;
            using System.Drawing.Imaging;
            using System.IO;
            using System.Linq;
            using System.Web;
            using System.Web.Services;</span></p>        /// <summary>
        /// 将PDF文档转换为图片的方法
        /// </summary>
        /// <param name="pdfInputPath">PDF文件路径</param>
        /// <param name="imageOutputPath">图片输出路径</param>
        /// <param name="imageName">生成图片的名字</param>
        /// <param name="startPageNum">从PDF文档的第几页开始转换</param>
        /// <param name="endPageNum">从PDF文档的第几页开始停止转换</param>
        /// <param name="imageFormat">设置所需图片格式</param>
        /// <param name="definition">设置图片的清晰度,数字越大越清晰</param>
        /// <param name="mark">设置水印</param>
        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();
        }




</pre><pre name="code" class="csharp"><span style="white-space:pre">	</span>同时附上winform里面使用<span style="font-family: 'Microsoft YaHei'; font-size: 14px; line-height: 26px;">Acrobat.dll的源码</span>
<span style="font-family: 'Microsoft YaHei'; font-size: 14px; line-height: 26px;"><span style="white-space:pre">	</span>  using System;
<span style="white-space:pre">	</span>  using System.Collections.Generic;
<span style="white-space:pre">	</span>  using System.Drawing;
<span style="white-space:pre">	</span>  using System.Drawing.Imaging;
<span style="white-space:pre">	</span>  using System.IO;
<span style="white-space:pre">	</span>  using System.Linq;
<span style="white-space:pre">	</span>  using System.Runtime.InteropServices;
<span style="white-space:pre">	</span>  using System.Threading;
<span style="white-space:pre">	</span>  using System.Timers;
<span style="white-space:pre">	</span>  using System.Windows.Forms;
<span style="white-space:pre">	</span>  using PDFConvertService.Comm;
<span style="white-space:pre">	</span>  using PDFConvertService.DAL;
<span style="white-space:pre">	</span>  using PDFConvertService.Entity;</span>

        /// <summary>
        /// 将PDF文档转换为图片的方法,你可以像这样调用该方法:ConvertPDF2Image("F:\\A.pdf", "F:\\", "A", 0, 0, null, 0);
        /// 因为大多数的参数都有默认值,startPageNum默认值为1,endPageNum默认值为总页数,
        /// imageFormat默认值为ImageFormat.Jpeg,resolution默认值为1
        /// </summary>
        /// <param name="pdfInputPath">PDF文件路径</param>
        /// <param name="imageOutputPath">图片输出路径</param>
        /// <param name="imageName">图片的名字,不需要带扩展名</param>
        /// <param name="startPageNum">从PDF文档的第几页开始转换,默认值为1</param>
        /// <param name="endPageNum">从PDF文档的第几页开始停止转换,默认值为PDF总页数</param>
        /// <param name="imageFormat">设置所需图片格式</param>
        /// <param name="resolution">设置图片的分辨率,数字越大越清晰,默认值为1</param>
        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);
        }

赶Demo中,做出来会放上。

				
时间: 2024-09-30 20:47:21

PDF转IMAGE(自定义水印)的相关文章

android之利用surfaceView实现自定义水印相机

知识点 1.自定义相机+预览相机 2.截屏拍照加水印 3.关于不使用intent来传输图片 俗话说,有图有真相.很多人都是喜欢直接看图,不像我,比较喜欢文字多点,经常看看散文什么的陶冶一下情操. 好了,说到这里,就引出我们今天要做的这个功能,那就是水印相机.水印相机说白了,就是在拍照的图片上面加上自己想要的各种信息,包括文字,图片或者其它你想要的信息. 在这里,我自己定义了一个类WaterCameraActivity,是自定义的相机的,然后还有一个类ViewPhoto,是用来查看你拍照后的图片的

上传自定义水印图片到图片空间及保存数据库的方法

(1).添加我的水印,按钮展示: <div class="form-actions"> <button data-toggle="modal" class="sui-btn btn-primary btn-large" onclick="addmywatermark();" >添加我的水印</button> </div> /** * 添加我的水印 **/ function add

java对pdf添加清晰的水印图片,需要第三包jar包:itextpdf-5.1.3.jar

import java.io.File;import java.io.FileOutputStream;import com.itextpdf.text.Image;import com.itextpdf.text.pdf.PdfArray;import com.itextpdf.text.pdf.PdfContentByte;import com.itextpdf.text.pdf.PdfDictionary;import com.itextpdf.text.pdf.PdfName;impor

给pdf文件添加防伪水印logo(附工程源码下载)

pdf添加水印logo这种需求场景确实很少,有些时候一些销售单据生成pdf添加一个水印logo,做一个简单的防伪效果,虽然实际上并没有太大作用,但是产品经理说要,巴拉巴拉--省略一万字. 下面将源码分享给猿友们,有用就looklook,没用就转移视线吧. 一.效果展示 没加水印的pdf: 添加水印后的pdf: 这里截图效果可能不是很明显,有需要的猿友可以直接下载下面的源码压缩包,里面有添加水印后的pdf文件. 二.源码下载 http://download.csdn.net/detail/u013

CAD转换PDF格式,自定义设置PDF的尺寸、颜色、质量

我们在日常办公工作中,经常需要把CAD 转换成PDF格式,但是有时候会发现,转换完成的PDF图纸的显示是不清晰的.可能尺寸.颜色.质量都有问题,这时候我们该如何才能解决这一问题呢?今天小编就为大家迅捷CAD编辑器来操作,这样我没问我呢可以在操作CAD转PDF的同时,就能够自定义设置PDF的尺寸.颜色和质量.具体步骤如下: 步骤一:首先在浏览器搜索迅捷CAD编辑器下载安装到电脑端. 步骤二:运行软件,点击界面左上角的"文件"按钮,再点击"批处理"按钮,进入"

[转]为ReportViewer导出的PDF文档加上水印

接到一個頗富挑戰性的需求,Reporting Service或RDLC報表可匯出成Excel.PDF等檔案格式,對一般麻瓜型使用者而言,PDF唯讀,Excel則可修改,業務單位希望在拿到報表紙本時加以區分:換句話說,如果能讓PDF與Excel檔的列印結果有別,即可做為報表結果是否唯讀,有無被修改可能的依據.(姑且排除使用者設法修改PDF檔或將Excel仿製成PDF樣式的情境) 我想到一個做法是為匯出的PDF檔加上浮水印.同一張報表匯出的Word.Excel.PDF檔內容理應一致,當PDF檔被加註

25本Deep Learning英文PDF电子书(清晰无水印)

涉及和深度学习相关的各种内容,包括TensorFlow.PyTorch.Theano.Hadoop.计算机视觉.神经网络.大数据等,语言涉及Python.Java.R和Matlab.本压缩包内具体包括以下25本PDF格式电子书:1)Deep Learning for Computer Vision2)Hands-On Deep Learning with TensorFlow3)Deep Learning for Computer Architects4)Python Deep Learning

js自定义水印

前言:今天在github上看到了一个定义水印的项目,因为获取的星星还蛮多,就多看了几眼,发现该项目简单有趣,心想以后可能会用的到,并且我下载到本地并亲自测试运行了一波.其实该项目最吸引我的是它定义js方法的方式(其实我看过很多项目都是这样定义js方法的,因为他们的项目太大,分析太过于复杂.这个项目让我有了一个切入点).下面我就把该项目的分析过程与大家分享一下. 一:源码 因为对js,canvan不是太熟悉,故添加了注释已帮助理解和记忆 !function (root, factory) { //

PDF文件添加二维码水印教程

maven配置iText的jar,主要不是所有私服都有iText的jar,maven仓库没有的,可以去https://mvnrepository.com/artifact/com.itextpdf/itextpdf/5.5.12 这里下载 <!-- itextpdf --> <dependency> <groupId>com.itextpdf</groupId> <artifactId>itextpdf</artifactId> &l