zoukankan      html  css  js  c++  java
  • 基于Aspose.Pdf把pdf文件每一页转换为图片

    如题,直接上代码片段

                //1.选择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);
                    }

                } 

  • 相关阅读:
    深度卷积网络中如何进行上采样?
    权重衰减(weight decay), L2正则
    python中的super().__init__()
    随机变量的间独立性及其传播
    卡尔曼滤波、扩展卡尔曼滤波、无迹卡尔曼滤波以及粒子滤波原理
    贝叶斯推断中的后验概率、似然函数、先验概率以及边际似然定义(转)
    详解最大似然估计(MLE)、最大后验概率估计(MAP),以及贝叶斯公式的理解(转)
    python告警发微信
    python模块operator操作符函数
    Django之CSRF验证。
  • 原文地址:https://www.cnblogs.com/boolean/p/2493925.html
Copyright © 2011-2022 走看看