将主题应用于演示文稿
Contents
[
Hide
]
OpenXML 演示文稿:
string FilePath = @"..\..\..\..\Sample Files\";
string FileName = FilePath + "Apply Theme to Presentation.pptx";
string ThemeFileName = FilePath + "Theme.pptx";
ApplyThemeToPresentation(FileName, ThemeFileName);
// 将新主题应用于演示文稿。
public static void ApplyThemeToPresentation(string presentationFile, string themePresentation)
{
using (PresentationDocument themeDocument = PresentationDocument.Open(themePresentation, false))
using (PresentationDocument presentationDocument = PresentationDocument.Open(presentationFile, true))
{
ApplyThemeToPresentation(presentationDocument, themeDocument);
}
}
// 将新主题应用于演示文稿。
public static void ApplyThemeToPresentation(PresentationDocument presentationDocument, PresentationDocument themeDocument)
{
if (presentationDocument == null)
{
throw new ArgumentNullException("presentationDocument");
}
if (themeDocument == null)
{
throw new ArgumentNullException("themeDocument");
}
// 获取演示文稿文档的演示文稿部分。
PresentationPart presentationPart = presentationDocument.PresentationPart;
// 获取现有的幻灯片母版部分。
SlideMasterPart slideMasterPart = presentationPart.SlideMasterParts.ElementAt(0);
string relationshipId = presentationPart.GetIdOfPart(slideMasterPart);
// 获取新的幻灯片母版部分。
SlideMasterPart newSlideMasterPart = themeDocument.PresentationPart.SlideMasterParts.ElementAt(0);
// 删除现有的主题部分。
presentationPart.DeletePart(presentationPart.ThemePart);
// 删除旧的幻灯片母版部分。
presentationPart.DeletePart(slideMasterPart);
// 导入新的幻灯片母版部分,并重用旧的关系 ID。
newSlideMasterPart = presentationPart.AddPart(newSlideMasterPart, relationshipId);
// 更改为新的主题部分。
presentationPart.AddPart(newSlideMasterPart.ThemePart);
Dictionary<string, SlideLayoutPart> newSlideLayouts = new Dictionary<string, SlideLayoutPart>();
foreach (var slideLayoutPart in newSlideMasterPart.SlideLayoutParts)
{
newSlideLayouts.Add(GetSlideLayoutType(slideLayoutPart), slideLayoutPart);
}
string layoutType = null;
SlideLayoutPart newLayoutPart = null;
// 插入本示例的布局代码。
string defaultLayoutType = "标题和内容";
// 删除所有幻灯片上的幻灯片布局关系。
foreach (var slidePart in presentationPart.SlideParts)
{
layoutType = null;
if (slidePart.SlideLayoutPart != null)
{
// 确定每个幻灯片的幻灯片布局类型。
layoutType = GetSlideLayoutType(slidePart.SlideLayoutPart);
// 删除旧的布局部分。
slidePart.DeletePart(slidePart.SlideLayoutPart);
}
if (layoutType != null && newSlideLayouts.TryGetValue(layoutType, out newLayoutPart))
{
// 应用新的布局部分。
slidePart.AddPart(newLayoutPart);
}
else
{
newLayoutPart = newSlideLayouts[defaultLayoutType];
// 应用新的默认布局部分。
slidePart.AddPart(newLayoutPart);
}
}
}
// 获取幻灯片布局类型。
public static string GetSlideLayoutType(SlideLayoutPart slideLayoutPart)
{
CommonSlideData slideData = slideLayoutPart.SlideLayout.CommonSlideData;
// 备注:如果在生产代码中使用,请检查空引用。
return slideData.Name;
}
Aspose.Slides
为了应用主题,我们需要克隆带有母版的幻灯片,请按照以下步骤操作:
- 创建一个包含要克隆的源演示文稿的 Presentation 类实例。
- 创建一个包含要克隆到的目标演示文稿的 Presentation 类实例。
- 访问要克隆的幻灯片以及母版幻灯片。
- 通过引用目标演示文稿的 Presentation 对象公开的 Masters 集合来实例化 IMasterSlideCollection 类。
- 调用 IMasterSlideCollection 对象公开的 AddClone 方法,并将要克隆的源 PPTX 中的母版作为参数传递给 AddClone 方法。
- 通过设置对目标演示文稿的 Presentation 对象公开的 Slides 集合的引用来实例化 ISlideCollection 类。
- 调用 ISlideCollection 对象公开的 AddClone 方法,并将要克隆的源演示文稿中的幻灯片和母版幻灯片作为参数传递给 AddClone 方法。
- 写入修改后的目标演示文稿文件。
string FilePath = @"..\..\..\..\Sample Files\";
string FileName = FilePath + "Apply Theme to Presentation.pptx";
string ThemeFileName = FilePath + "Theme.pptx";
ApplyThemeToPresentation(ThemeFileName, FileName);
public static void ApplyThemeToPresentation(string presentationFile, string outputFile)
{
// 实例化 Presentation 类以加载源演示文稿文件
Presentation srcPres = new Presentation(presentationFile);
// 实例化目标演示文稿的 Presentation 类(要克隆幻灯片的地方)
Presentation destPres = new Presentation(outputFile);
// 实例化源演示文稿的幻灯片集合中的 ISlide 以及
// 母版幻灯片
ISlide SourceSlide = srcPres.Slides[0];
// 从源演示文稿的母版集合中克隆所需的母版幻灯片到目标演示文稿的母版集合中
IMasterSlideCollection masters = destPres.Masters;
IMasterSlide SourceMaster = SourceSlide.LayoutSlide.MasterSlide;
// 从源演示文稿的母版集合中克隆所需的母版幻灯片到目标演示文稿的母版集合中
IMasterSlide iSlide = masters.AddClone(SourceMaster);
// 将所需的源演示文稿中的幻灯片与所需的母版克隆到目标演示文稿的幻灯片集合末尾
ISlideCollection slds = destPres.Slides;
slds.AddClone(SourceSlide, iSlide, true);
// 从源演示文稿的母版集合中克隆所需的母版幻灯片到目标演示文稿的母版集合中
// 将目标演示文稿保存到磁盘
destPres.Save(outputFile, SaveFormat.Pptx);
}