摘要: 要实现PPT转图片,首先需要引用两个DLL。我这里用的这个这个版本Microsoft.Office.Interop.PowerPoint 12.0Microsoft Office 12.0 objectLibrary如下图:代码如下: private void pptToImg(string pptPath, string imgPath) { var app = new Microsoft.Office.Interop.PowerPoint.Application(); var ppt = app.Presentations.Open... 阅读全文
posted @ 2013-09-02 10:09 仰望 星空 阅读(2637) 评论(2) 推荐(0)