彩票走势图

基于Aspose.Pdf把pdf文件每一页转换为图片

原创|其它|编辑:郝浩|2012-10-16 13:12:40.000|阅读 497 次

概述:下面介绍了使用Aspose.Pdf把pdf文件每一页转换为图片的方法。

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

下面介绍了使用Aspose.Pdf把pdf文件每一页转换为图片的方法。

//选择pdf文件
            var dialog = new OpenFileDialog();
            dialog.Filter = "pdf文件|*.pdf";
            var dialogResult = dialog.ShowDialog();
            if (dialogResult != System.Windows.Forms.DialogResult.OK) {
                return;
            }

            //和选择的文件并列创建一个目录
            string filePath = dialog.FileName;
            string directoryPath = filePath + "目录";
            //aspose许可证
            Aspose.Pdf.License l = new Aspose.Pdf.License();
            string licenseName = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "Aspose.Total.Product.Family.lic");
            l.SetLicense(licenseName);
            //定义Jpeg转换设备
            Aspose.Pdf.Document document = new Aspose.Pdf.Document(filePath);
            var device = new Aspose.Pdf.Devices.JpegDevice();
            int quality = int.Parse(this.comboBox1.SelectedItem.ToString());
            directoryPath += quality;
            Directory.CreateDirectory(directoryPath);
            //默认质量为100,设置质量的好坏与处理速度不成正比,甚至是设置的质量越低反而花的时间越长,怀疑处理过程是先生成高质量的再压缩
            device = new Aspose.Pdf.Devices.JpegDevice(quality);
            //遍历每一页转为jpg
            for (var i = 1; i <= document.Pages.Count; i++) {
                string filePathOutPut = Path.Combine(directoryPath, string.Format("{0}.jpg", i));
                FileStream fs = new FileStream(filePathOutPut, FileMode.OpenOrCreate);
                try {
                    device.Process(document.Pages[i], fs);
                    fs.Close();
                } catch (Exception ex) {
                    fs.Close();
                    File.Delete(filePathOutPut);
                }

 


标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn

文章转载自:Boolean的博客——博客园

为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP