本页内容
PDF 转 PPT
概述
ComPDFKit Conversion SDK 提供了可以将 PDF 文件转换为 PPT 文件的功能,并还原了原始文档的内容布局和格式,可满足用户在 Microsoft PowerPoint 中进行文档内容的演示与编辑的需求。
示例
以下是完整的示例代码,演示了如何将 PDF 文档转换为 PPT 文档。
objective-c
// 获取PDF文件的路径。
NSString *pdfPath = @"...";
// 获取PPT文件的路径。
NSString *outputPath = @"...";
CPDFConvertPPTOptions *options = [[CPDFConvertPPTOptions alloc] init];
[options setIsContainImages:NO];
[options setIsContainAnnotations:NO];
CPDFConverterPPT *converter = [[CPDFConverterPPT alloc] initWithURL:[NSURL fileURLWithPath:pdfPath] password:nil];
[converter convertToFilePath:outputPath pageIndexs:nil options:nil];