• PPT转化成Image、PPTX、XPS、EMF


    最近工作经常用到演示文稿,接触到了一款不错的免费软件—Free Spire.Presentation。使用之后发现这款软件非常轻巧,功能还挺齐全。这款软件的转化功能也是非常不错的,平时遇到的各种转换难题,用短短几行代码就能搞定。现在我跟大家分享一下我的使用心得。

    有兴趣的朋友可以从E-iceblue官网下载Free Spire.Presentation使用。下载完成后,请将bin文件夹的.DLL添加作为Visual Studio的引用。

    将PPT文件转化成Image文件

    //Create a presentation document.
    Presentation presentation = new Presentation();
    //Load the PPT file from disk.
    presentation.LoadFromFile("sample.pptx");
    // Save the slide to Image.
    Image image = presentation.Slides[i].SaveAsImage();
    //Save image to file.
    String fileName = String.Format("result-img-{0}.png", i);
    image.Save(“ToImage”, System.Drawing.Imaging.ImageFormat.Png);
    //Launch and view the image.
    System.Diagnostics.Process.Start(“ToImage”);
    

    将PPT文件转化成PPTX文件

    //Create a presentation document.
    Presentation presentation = new Presentation();
    //Load the PPT file from disk.
    presentation.LoadFromFile("sample.ppt");
    //Save the PPT document to PPTX file format.
    presentation.SaveToFile("ToPPTX.pptx", FileFormat.Pptx2010);
    //Launch and view the resulted PPTX file.
    System.Diagnostics.Process.Start("ToPPTX.pptx");
    

    将PPT文件转化成XPS文件

    //Save to the XPS file.
    ppt.SaveToFile("sample.xps", FileFormat.XPS);
    

    将PPS文件转化成PPTX文件

    //Save the PPS document to PPTX file format.
    presentation.SaveToFile("ToPPTX.pptx", FileFormat.Pptx2010);
    

    将PPT文件转化成EMF文件

    //Save the presentation slide to EMF image.
    presentation.Slides[2].SaveAsEMF("result.emf");
    

    PS:我们在之前的文章里面曾经谈过将PPT文件转化成PDF文件,在这里就不多作介绍了。

  • 相关阅读:
    TransactSQL selectCourse storedprocedurestuSysInfo project form cmm
    TransactSQL insert触发器 游标遍历结果集
    css custome checkbox style in sench list
    在ipad的safari上使用Skype链接
    一个async和await 关键字的简单入门
    MVP模式
    c#静态变量和静态属性的区别
    异步延时启动
    C#中 托管线程的状态
    NLog实现归档日志且只保留一段时间的日志(比如一个星期)
  • 原文地址:https://www.cnblogs.com/Yesi/p/5388152.html
Copyright © 2020-2023  润新知