这里在提供C#代码,将PPT转成PDF.直接上代码;
要引入Microsoft.Office.Interop.PowerPoint; 版本12.0.0.0;
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Runtime.InteropServices; using Microsoft.Office.Interop.PowerPoint; //Office 命名空间 namespace OfficeToPdf { //excel 类 class PowerPointConverter { //构造函数 public PowerPointConverter() { } /// <summary> /// 转换PowerPoint 成PDF文档 /// </summary> /// <param name="_lstrInputFile">原文件路径</param> /// <param name="_lstrOutFile">pdf文件输出路径</param> /// <returns>true 成功</returns> public bool ConverterToPdf( string _lstrInputFile, string _lstrOutFile) { Microsoft.Office.Interop.PowerPoint.Application lobjPowerPointApp = null ; Microsoft.Office.Interop.PowerPoint.Presentation lobjppt = null ; object lobjMissing = System.Reflection.Missing.Value; object lobjSaveChanges = null ; try { lobjPowerPointApp = new Microsoft.Office.Interop.PowerPoint.Application(); lobjppt = lobjPowerPointApp.Presentations.Open(_lstrInputFile, MSCore.MsoTriState.msoTrue, MSCore.MsoTriState.msoFalse, MSCore.MsoTriState.msoFalse); lobjppt.SaveAs(_lstrOutFile, PpSaveAsFileType.ppSaveAsPDF, MSCore.MsoTriState.msoCTrue); } catch (Exception ex) { //其他日志操作; return false ; } finally { if (lobjppt != null ) { lobjppt.Close(); Marshal.ReleaseComObject(lobjppt); lobjppt = null ; } if (lobjPowerPointApp != null ) { lobjPowerPointApp.Quit(); Marshal.ReleaseComObject(lobjPowerPointApp); lobjPowerPointApp = null ; } //主动激活垃圾回收器,主要是避免超大批量转文档时,内存占用过多,而垃圾回收器并不是时刻都在运行! GC.Collect(); GC.WaitForPendingFinalizers(); } return true ; } } } |
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对服务器之家的支持。如果你想了解更多相关内容请查看下面相关链接
原文链接:https://blog.csdn.net/chenqiangdage/article/details/20487167