aspose ppt转图片

如果直接转图片,会很模糊
采用先将ppt转pdf,在通过pdf转图片,这样出来的结果就非常清晰

  var pptFileName = "公司网络及计算机使用与要求.pptx";
            Presentation ppt = new Presentation(pptFileName);
            Stream st=new MemoryStream();
            ppt.Save(st,SaveFormat.Pdf);
            Aspose.Pdf.Document document = new Aspose.Pdf.Document(st);
            var device = new Aspose.Pdf.Devices.JpegDevice();
            
            //默认质量为100,设置质量的好坏与处理速度不成正比,甚至是设置的质量越低反而花的时间越长,怀疑处理过程是先生成高质量的再压缩
            device = new Aspose.Pdf.Devices.JpegDevice(100);
            //遍历每一页转为jpg
            for (var i = 1; i <= document.Pages.Count; i++)
            {
                string filePathOutPut = Path.Combine("images", 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);
                }
            }
View Code

注意,aspose新的版本加载ppt都是一样的代码:

Presentation ppt = new Presentation(pptFileName);

比较老的版本对于ppt的版本有区别,

如果后缀名是ppt,那么使用:

Presentation ppt = new Presentation(pptFileName);

如果后缀名是pptx,那么使用:

PresentationEx ppt = new PresentationEx(pptFileName);

 

怎样区分aspose的版本是老的还是新的呢,有一个笨办法,查看有没有PresentationEx 这个类,如果有,那么是老版本,没有就是新版本。

转载于:https://www.cnblogs.com/sczmzx/p/9729544.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值