乔山办公网我们一直在努力
您的位置:乔山办公网 > ppt怎么做 > PPT组件Spire.Presentation教程:在C 中将PPT文档转换为EMF图像-pptx转ppt

PPT组件Spire.Presentation教程:在C 中将PPT文档转换为EMF图像-pptx转ppt

作者:乔山办公网日期:

返回目录:ppt怎么做

本文将演示如何将PowerPoint文档转换为EMF图像。 使用Spire.Presentation for .NET,我们可以将演示幻灯片保存为与原始幻灯片相同大小的EMF图像,我们还可以为所得到的EMF图像设置特定大小。

将演示幻灯片转换为EMF,默认大小:

Step 1:创建演示文稿


Presentation presentation = new Presentation;

Step 2:从磁盘加载PPTX文件


presentation.LoadFromFile("Sample.pptx", FileFormat.Pptx2010);

Step 3:通过SaveAsEMF的方法将演示幻灯片保存到EMF图像


presentation.Slides[2].SaveAsEMF("Result.emf");

效果截图:

PPT组件Spire.Presentation教程:在C 中将PPT文档转换为EMF图像

演示幻灯片转换为特定尺寸为1075 * 710的EMF:


presentation.LoadFromFile("sample.pptx");

Step 3:通过SaveAsEMF(string filePath,int width,int height)的方法将演示文稿幻灯片保存为特定大小为1075 * 710的EMF图像


presentation.Slides[2].SaveAsEMF("Result2.emf", 1075, 710);

效果截图:

PPT组件Spire.Presentation教程:在C 中将PPT文档转换为EMF图像

完整代码:


static void Main(string[] args)
{
Presentation presentation = new Presentation;
presentation.LoadFromFile("Sample.pptx", FileFormat.Pptx2010);

//presentation.Slides[2].SaveAsEMF("Result.emf");

presentation.Slides[2].SaveAsEMF("Result2.emf", 1075, 710);
}

相关阅读

关键词不能为空
极力推荐

ppt怎么做_excel表格制作_office365_word文档_365办公网