利用Aspose文档转图片

通过使用Aspose您可以轻松的将您的文档转换成真正的图片格式,最好的保证您的内容将实际可见,与其他格式相比,它并不存在查看工具的安装问题。

准备工作:

1:下载Aspose组件包:http://download.csdn.net/detail/laoge/6931819

编写代码:

核心代码AsposeFileToImg,以下代码在文档页数超过100以上生成会变慢,页数越大生成越慢,在实际使用中请注意。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
using System.Drawing;
using System.Drawing.Imaging;
using System.Reflection;
using System.Threading;
using System.Drawing;
using System.Runtime.InteropServices;
using System.Diagnostics;
using Aspose.Cells;

namespace PdfOrImg
{
    /// <summary>
    /// 功能:
    /// pdf,doc,docx,ppt,pptx,xls,xlsx文件转图片
    /// 在当前文件下创建一个以文件名命名的文件夹,该文件夹的保存的是该文件生成是页图片
    /// </summary>
    public class AsposeFileToImg
    {
        private static string imageDirectoryPath = "";
        public static void FileToImg(string filePath)
        {
            if (File.Exists(filePath))
            {
                FileInfo pdfFi = new FileInfo(filePath);
                string filename = pdfFi.Name.Replace(pdfFi.Extension, "");
                imageDirectoryPath = System.IO.Path.Combine(pdfFi.DirectoryName, filename);
                if (!Directory.Exists(imageDirectoryPath))
                {
                    Directory.CreateDirectory(imageDirectoryPath);
                }
                string a = Path.GetExtension(filePath).ToLower();
                if (a == ".pdf")
                {
                    PdfToImg(filePath);
                }
                else
                {
                    if (a == ".doc" || a == ".docx")
                    {
                        DocToImg(filePath);
                    }
                    else
                    {
                        if (a == ".ppt")
                        {
                            PptToImg(filePath);
                        }
                        else if (a == ".pptx")
                        {
                            PptxToImg(filePath);
                        }
                        else
                        {
                            if (a == ".xls" || a == ".xlsx")
                            {
                                XlsToImg(filePath);
                            }
                        }
                    }
                }
            }
        }
        private static void PdfToImg(string filePath)
        {
            string filename = Path.GetFileNameWithoutExtension(filePath).ToLower();
            FileStream docStream = new FileStream(filePath, FileMode.Open);
            var pdf = new Aspose.Pdf.Document(docStream);
            for (int i = 1; i < pdf.Pages.Count + 1; i++)
            {
                try
                {
                    string imgpath = imageDirectoryPath + "/" + filename + "_" + i + ".jpg";
                    if (!File.Exists(imgpath))
                    {
                        using (FileStream imageStream = new FileStream(imgpath, FileMode.Create))
                        {
                            Aspose.Pdf.Devices.Resolution resolution = new Aspose.Pdf.Devices.Resolution(300);
                            Aspose.Pdf.Devices.JpegDevice jpegDevice = new Aspose.Pdf.Devices.JpegDevice(resolution, 100);

                            jpegDevice.Process(pdf.Pages[i], imageStream);
                            imageStream.Close();
                        }
                    }
                }
                catch (Exception)
                {

                }
            }
        }
        private static void DocToImg(string filePath)
        {
            string filename = Path.GetFileNameWithoutExtension(filePath).ToLower();
            var words = new Aspose.Words.Document(filePath);

            Aspose.Words.Saving.ImageSaveOptions imageSaveOptions =
                   new Aspose.Words.Saving.ImageSaveOptions(Aspose.Words.SaveFormat.Jpeg);
            imageSaveOptions.Resolution = 128;

            int pageindex = 0;
            int pagecount = words.PageCount;
            for (int i = 1; i < pagecount + 1; i++)
            {
                try
                {
                    string imgpath = imageDirectoryPath + "/" + filename + "_" + i + ".jpg";
                    if (!File.Exists(imgpath))
                    {
                        imageSaveOptions.PageIndex = pageindex;
                        words.Save(imgpath, imageSaveOptions);
                        pageindex++;
                    }
                }
                catch (Exception)
                {

                }
            }
        }
        private static void PptToImg(string filePath)
        {
            string filename = Path.GetFileNameWithoutExtension(filePath).ToLower();
            var ppt = new Aspose.Slides.Presentation(filePath);
            string imgpath = imageDirectoryPath + "/" + filename + ".pdf";
            if (!File.Exists(imgpath))
            {
                ppt.Save(imgpath, Aspose.Slides.Export.SaveFormat.Pdf);
            }
            PdfToImg(imgpath);
        }
        private static void PptxToImg(string filePath)
        {
            string filename = Path.GetFileNameWithoutExtension(filePath).ToLower();
            var ppt = new Aspose.Slides.Pptx.PresentationEx(filePath);
            string imgpath = imageDirectoryPath + "/" + filename + ".pdf";
            if (!File.Exists(imgpath))
            {
                ppt.Save(imgpath, Aspose.Slides.Export.SaveFormat.Pdf);
            }
            PdfToImg(imgpath);
        }
        private static void XlsToImg(string filePath)
        {
            string filename = Path.GetFileNameWithoutExtension(filePath).ToLower();
            Workbook book = new Workbook(filePath);
            //创建一个图表选项的对象
            Aspose.Cells.Rendering.ImageOrPrintOptions imgOptions = new Aspose.Cells.Rendering.ImageOrPrintOptions();
            imgOptions.ImageFormat = ImageFormat.Jpeg;
            int count = book.Worksheets.Count;
            for (int i = 0; i < count; i++)
            {
                //获取一张工作表
                Worksheet sheet = book.Worksheets[i];
                //创建一个纸张底色渲染对象
                Aspose.Cells.Rendering.SheetRender sr = new Aspose.Cells.Rendering.SheetRender(sheet, imgOptions);
                for (int j = 0; j < sr.PageCount; j++)
                {
                    string imgpath = imageDirectoryPath + "/" + filename + "_" + i + "_" + j + "_.jpg";
                    if (!File.Exists(imgpath))
                    {
                        sr.ToImage(j, imgpath);
                    }
                }
            }
        }
    }
}

调用代码:

using System;
using System.IO;
using System.Collections;

namespace PdfOrImg
{
    //Adobe Acrobat9.0
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("========文件转图片开始========");
            try
            {

                ArrayList alist = new ArrayList();
                alist.Add("temp_pdf.pdf");

                alist.Add("temp_ppt.ppt");
                alist.Add("temp_pptx.pptx");

                alist.Add("temp_doc.doc");
                alist.Add("temp_docx.docx");

                alist.Add("temp_xls.xls");
                alist.Add("temp_xlsx.xlsx");

                for (int i = 0; i < alist.Count; i++)
                {
                    try
                    {
                        string pdfFilePath = alist[i].ToString();
                        FileInfo pdfFi = new FileInfo(pdfFilePath);
                        string filepath = pdfFi.FullName;

                        Console.WriteLine("正在转换" + pdfFilePath + "文件...");
                        AsposeFileToImg.FileToImg(filepath);
                    }
                    catch (Exception)
                    {

                    }
                }
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex.ToString());
            }
            Console.WriteLine("========文件转图片结束========");
            Console.Read();

        }

    }
}

运行情况:

根据文档名称建立同名的文件夹,并在文件夹中存放文档每一页的图片,图片命名格式:文件名_页码.jpg 效果如下:

获取代码:

http://download.csdn.net/detail/luomingui/9151083

时间: 2024-11-09 03:43:11

利用Aspose文档转图片的相关文章

利用iTextSharp组件给PDF文档添加图片水印,文字水印

最近在做关于PDF文档添加水印的功能,折腾了好久,终于好了.以下做个记录: 首先会用到iTextSharp组件,大家可以去官网下载,同时我也会在本文中附加进来. 代码中添加引用为:   using System; using System.Collections.Generic; using System.Linq; using System.Text; using iTextSharp.text.pdf; using System.IO; using iTextSharp.text; 创建一个

向Docx4j生成的word文档添加图片和布局--第一部分

原文标题:Adding images and layout to your Docx4j-generated word documents, part 1 原文链接:http://blog.iprofs.nl/2012/10/22/adding-images-and-layout-to-your-docx4j-generated-word-documents-part-1/ 原文作者:lvdpal 发表日期:2012年10月22日 注:由于我对docx4j也不是很熟悉,所以很多专业名词不会翻译,

C# 替换Word文本—— 用文档、图片、表格替换文本

编辑文档时,对一些需要修改的字符或段落可以通过查找替换的方式,快速地更改.在C# 在word中查找及替换文本一文中,主要介绍了在Word中以文本替换文本的方法,在本篇文章中,将介绍如何用一篇Word文档.图片或者表格来替换文档中的指定文本字符串.示例要点如下: 1. 用文档替换Word中的文本 2. 用图片替换Word中的文本 3. 用表格替换Word中的文本 工具 Free Spire.Doc for .NET 下载安装后,注意在程序中添加引用Spire.Doc.dll(如下图),dll文件可

利用未文档化API:RtlAdjustPrivilege 提权实现自动关机

这里主要是利用NTDLL.dll中未文档化的API: RtlAdjustPrivilege 来实现提权.自动关机的功能. RtlAdjustPrivilege定义如下: NTSTATUS RtlAdjustPrivilege ( ULONG Privilege, BOOLEAN Enable, BOOLEAN CurrentThread, PBOOLEAN Enabled ) 参数含义如下:Privilege [In] Privilege index to change.            

office文档、图片、音/视频格式转换工具

1.音频/视屏转换工具VLC https://wiki.videolan.org/Mp3/#Container_formats  http://wenku.baidu.com/view/ba73ac5c804d2b160b4ec05a.html?re=view https://wiki.videolan.org/How_to_Batch_Encode/ https://wiki.videolan.org/Transcode/ VLC supported video format to MP4 (

判断pdf、word文档、图片等文件类型(格式)、大小的简便方法

很久没发文了,今天有时间就写一下吧. 关于上传文件,通常我们都需要对其进行判断,限制上传的类型,如果是上传图片,我们甚至会把图片转化成base64数据后,再进行上传.普遍的方法是直接写在上传按钮的触发方法里面,但是对于大型的项目而言,这必然是会重复着同一段代码,使得代码臃肿繁重,这样也不利于平台的优化以及后续的维护,于是,我便封装了一个小小的判断上传文件的类型,图片类型的简便方法,这样不紧节省了重复的劳动力,而且还可以更好的优化项目,提高性能,代码如下: /* Type: 该值为类型数组,例如:

利用POI操作不同版本word文档中的图片以及创建word文档

我们都知道要想利用java对office操作最常用的技术就应该是POI了,在这里本人就不多说究竟POI是什么和怎么用了.先说本人遇到的问题,不同于利用POI去向word文档以及excel文档去写入数据和向外导出数据并且保存到数据库中这些类似的操作,由于业务上的需要需要利用POI去读取word中的图片,并且去把图片去保存为一个file文件.查了Apache公司提供的api帮助文档,再网友的一些线索,本人也总结了几中对不同word版本(.doc或者是.docx结尾)对于文件中所含图片的操作方式,希望

利用POI操作不同版本号word文档中的图片以及创建word文档

我们都知道要想利用java对office操作最经常使用的技术就应该是POI了,在这里本人就不多说到底POI是什么和怎么用了. 先说本人遇到的问题,不同于利用POI去向word文档以及excel文档去写入数据和向外导出数据而且保存到数据库中这些类似的操作,因为业务上的须要须要利用POI去读取word中的图片,而且去把图片去保存为一个file文件.查了Apache公司提供的api帮助文档,再网友的一些线索,本人也总结了几中对不同word版本号(.doc或者是.docx结尾)对于文件里所含图片的操作方

如何在PDF文档内容中插入/添加图片文件

现在很多人都会使用PDF格式文件,但是却很少会有人知道怎么编辑这种文件,我们所见的PDF格式文档是一种及其特殊的文件,这种文不论是修改还是编辑都非常的困难,因此,如果我们需要在PDF文件中插入图片的话该怎么做呢?今天小编就来为大家详细的介绍下如何使用专业软件在PDF文件中插入图片! 需要使用的软件是迅捷PDF编辑器,是一款专业的PDF编辑软件,下载很简单,只要在浏览器上搜索到迅捷PDF编辑器是官方网站,点击软件下载后选择下路径就可以了.安装运行也极为简单,还要按照提示点击下一步就可以了,在官网下