更改幻灯片大小是保持 ppt 文档视觉完整性的方法之一。通过根据目标屏幕或投影设备的特定长宽比和尺寸来调整幻灯片大小,可以避免出现内容被裁剪、拉伸或扭曲等问题。在本文中,您将学习如何使用 spire.presentation for .net 通过 c# 代码更改 powerpoint 演示文稿的幻灯片大小。
安装 spire.presentation for .net
首先,您需要添加 spire.presentation for .net 包中包含的 dll 文件作为 .net 项目中的引用。dll 文件可以从此链接下载或通过 安装。
pm> install-package spire.presentation
使用 c# 更改幻灯片大小为预设尺寸
spire.presentation for .net 提供的 presentation.slidesize.type 属性可用于设置或更改幻灯片大小为预设尺寸。具体步骤如下。
- 创建 presentation 类的对象。
- 使用 presentation.loadfromfile() 方法加载 powerpoint 演示文稿。
- 使用 presentation.slidesize.type 属性更改幻灯片尺寸。
- 使用 presentation.savetofile() 方法保存结果文档。
- c#
using spire.presentation;
namespace createcombination
{
class program
{
static void main(string[] args)
{
//创建presentation对象
presentation ppt = new presentation();
//加载ppt文档
ppt.loadfromfile("模板.pptx");
//更改ppt幻灯片大小
ppt.slidesize.type = slidesizetype.screen4x3;
//保存结果文档
ppt.savetofile("预定义幻灯片大小.pptx", fileformat.pptx2013);
ppt.dispose();
}
}
}
使用 c# 更改幻灯片大小为自定义尺寸
自定义幻灯片大小需要先将幻灯片尺寸类型更改为自定义 custom,然后通过 presentation.slidesize.size 属性设置所需的大小。具体步骤如下。
- 创建 presentation 类的对象。
- 使用 presentation.loadfromfile() 方法加载 powerpoint 演示文稿。
- 使用 presentation.slidesize.type 属性将幻灯片尺寸类型更改为自定义类型。
- 使用 presentation.slidesize.size 属性自定义幻灯片尺寸。
- 使用 presentation.savetofile() 方法保存结果文档。
- c#
using spire.presentation;
using system.drawing;
namespace createcombination
{
class program
{
static void main(string[] args)
{
//创建presentation对象
presentation ppt = new presentation();
//加载ppt文档
ppt.loadfromfile("模板.pptx");
//将幻灯片尺寸类型更改为自定义
ppt.slidesize.type = slidesizetype.custom;
//设置幻灯片尺寸
ppt.slidesize.size = new sizef(900, 600);
//保存结果文档
ppt.savetofile("自定义幻灯片大小.pptx", fileformat.pptx2013);
ppt.dispose();
}
}
}
申请临时 license
如果您希望删除结果文档中的评估消息,或者摆脱功能限制,请该email地址已收到反垃圾邮件插件保护。要显示它您需要在浏览器中启用javascript。获取有效期 30 天的临时许可证。