小男孩‘自慰网亚洲一区二区,亚洲一级在线播放毛片,亚洲中文字幕av每天更新,黄aⅴ永久免费无码,91成人午夜在线精品,色网站免费在线观看,亚洲欧洲wwwww在线观看

分享

PPT導(dǎo)出為圖片

 路人甲Java 2020-04-17

使用Aspose組件導(dǎo)出

Aspose有Aspose.Slides.dll,可以無需安裝office,進行讀寫PPT文件。

Aspose可能通過Aspose.Slides.NET安裝

簡單的導(dǎo)出圖片demo,如下:

 1     internal class PptToImagesConverter
 2     {
 3         private const string ImageExtension = ".png";
 4         public bool ConvertToImages(string pptFile, string exportImagesFolder)
 5         {
 6             using (Presentation pres = new Presentation(pptFile))
 7             {
 8                 int desiredX = 1200;
 9                 int desiredY = 800;
10 
11                 float scaleX = (float)(1.0 / pres.SlideSize.Size.Width) * desiredX;
12                 float scaleY = (float)(1.0 / pres.SlideSize.Size.Height) * desiredY;
13 
14                 foreach (ISlide sld in pres.Slides)
15                 {
16                     Bitmap bmp = sld.GetThumbnail(scaleX, scaleY);
17 
18                     string slidePath = Path.Combine(exportImagesFolder,$"Slide_{sld.SlideNumber}.{ImageExtension}");
19                     bmp.Save(slidePath, System.Drawing.Imaging.ImageFormat.Png);
20                 }
21             }
22 
23             return true;
24         }
25     }

注:以上途徑是沒有購買過的dll,生成的圖片會有水印。使用正版購買的,應(yīng)該不會有問題。

使用Interop.PowerPoint導(dǎo)出

也是在Nuget中搜索并安裝:

另,通過Presentations.Open("c:\test.pptx::PASSWORD::")可以解密PPT,從而導(dǎo)出圖片。 

 1     internal class PptToImagesConverter1
 2     {
 3         private const string PASSWORD_MARK = "::PASSWORD::";
 4         private const string ImageExtension = ".png";
 5         public bool ConvertToImages(string pptFile, string exportImagesFolder)
 6         {
 7             var tempPpt = Path.Combine(Path.GetTempPath(), Guid.NewGuid() + Path.GetExtension(pptFile));
 8             File.Copy(pptFile, tempPpt);
 9             Microsoft.Office.Interop.PowerPoint.Application app = new Microsoft.Office.Interop.PowerPoint.Application();
10             Microsoft.Office.Interop.PowerPoint.Presentation presentation = app.Presentations.Open(tempPpt + PASSWORD_MARK, MsoTriState.msoTrue, MsoTriState.msoFalse, MsoTriState.msoFalse);
11             int desiredX = 1200;
12             int desiredY = 800;
13             var slides = ((Microsoft.Office.Interop.PowerPoint.Presentation)presentation).Slides.Cast<Microsoft.Office.Interop.PowerPoint.Slide>().ToList();
14             Parallel.ForEach(slides, slide =>
15             {
16                 string slidePath = Path.Combine(exportImagesFolder, "Slide-" + slide.SlideIndex + ImageExtension);
17                 slide.Export(slidePath, ImageExtension, desiredX, desiredY);
18             });
19             return true;
20         }
21     }

 

    本站是提供個人知識管理的網(wǎng)絡(luò)存儲空間,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點。請注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購買等信息,謹(jǐn)防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請點擊一鍵舉報。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約

    類似文章 更多