- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在尝试从不同来源生成演示文稿。基本上我有大约 200 张幻灯片来自一些 PowerPoint 演示文稿。为了实现这一点,我使用了 OpenXml Sdk。程序流程如下:
最后,我将新的演示文稿保存到磁盘。尝试使用 PowerPoint 2013 打开它会破坏它,并显示以下信息:问题签名:
Problem Event Name: APPCRASH
Application Name: POWERPNT.EXE
Application Version: 15.0.4454.1000
Application Timestamp: 509a3abf
Fault Module Name: oart.dll
Fault Module Version: 15.0.4605.1000
Fault Module Timestamp: 531f9b2a
Exception Code: c00000fd
Exception Offset: 00003051
OS Version: 6.2.9200.2.0.0.272.7
Locale ID: 1033
关于问题的附加信息:
LCID: 1033
skulcid: 1033
用 PowerPoint 2010
打开它,但效果很好。没有问题。
这是代码:
private static void MergePresentation(string generatedPresentation, string presentationToBeMerged)
{
try
{
int id = 0;
// Open the destination presentation.
using (PresentationDocument generatedPresentationDeck = PresentationDocument.Open(generatedPresentation, true))
{
PresentationPart generatedPresentationPart = generatedPresentationDeck.PresentationPart;
// If the merged presentation does not have a SlideIdList
// element yet, add it.
if (generatedPresentationPart.Presentation.SlideIdList == null)
{
generatedPresentationPart.Presentation.SlideIdList = new SlideIdList();
}
// Open the source presentation. This will throw an exception if
// the source presentation does not exist.
using (PresentationDocument mySourceDeck = PresentationDocument.Open(presentationToBeMerged, false))
{
PresentationPart sourcePresPart = mySourceDeck.PresentationPart;
// Get unique ids for the slide master and slide lists
// for use later.
_uniqueId = GetMaxSlideMasterId(generatedPresentationPart.Presentation.SlideMasterIdList);
uint maxSlideId = GetMaxSlideId(generatedPresentationPart.Presentation.SlideIdList);
// Copy each slide in the source presentation, in order, to
// the destination presentation.
foreach (SlideId slideId in sourcePresPart.Presentation.SlideIdList)
{
SlidePart sp;
SlidePart destSp;
SlideMasterPart destMasterPart;
string relId;
SlideMasterId newSlideMasterId;
SlideId newSlideId;
// Create a unique relationship id.
id++;
sp = (SlidePart)sourcePresPart.GetPartById(slideId.RelationshipId);
//sp.Slide.Transition.Remove();
relId = Path.GetFileNameWithoutExtension(presentationToBeMerged).Replace(" ", "_") + id;
// Add the slide part to the destination presentation.
destSp = generatedPresentationPart.AddPart<SlidePart>(sp, relId);
// The slide master part was added. Make sure the
// relationship between the main presentation part and
// the slide master part is in place.
destMasterPart = destSp.SlideLayoutPart.SlideMasterPart;
generatedPresentationPart.AddPart(destMasterPart);
// Add the slide master id to the slide master id list.
_uniqueId++;
newSlideMasterId = new SlideMasterId();
newSlideMasterId.RelationshipId = generatedPresentationPart.GetIdOfPart(destMasterPart);
newSlideMasterId.Id = _uniqueId;
generatedPresentationPart.Presentation.SlideMasterIdList.Append(newSlideMasterId);
// Add the slide id to the slide id list.
maxSlideId++;
newSlideId = new SlideId();
newSlideId.RelationshipId = relId;
newSlideId.Id = maxSlideId;
generatedPresentationPart.Presentation.SlideIdList.Append(newSlideId);
}
// Make sure that all slide layout ids are unique.
FixSlideLayoutIds(generatedPresentationPart);
}
// Save the changes to the destination deck.
generatedPresentationPart.Presentation.Save();
}
}
catch (Exception ex)
{
throw ex;
}
}
/// <summary>
/// Find the maximum value of ID of all slide masters
/// </summary>
/// <param name="slideMasterIdList" />
/// <returns>
private static uint GetMaxSlideMasterId(SlideMasterIdList slideMasterIdList)
{
// Slide master identifiers have a minimum value of greater than
// or equal to 2147483648.
uint max = 2147483648;
if (slideMasterIdList != null)
// Get the maximum id value from the current set of children.
foreach (SlideMasterId child in
slideMasterIdList.Elements<SlideMasterId>())
{
uint id = child.Id;
if (id > max)
max = id;
}
return max;
}
/// <summary>
/// Find the maximum ID of all slides
/// </summary>
/// <param name="slideIdList" />
/// <returns>
private static uint GetMaxSlideId(SlideIdList slideIdList)
{
// Slide identifiers have a minimum value of greater than or
// equal to 256 and a maximum value of less than 2147483648.
uint max = 256;
if (slideIdList != null)
// Get the maximum id value from the current set of children.
foreach (SlideId child in slideIdList.Elements<SlideId>())
{
uint id = child.Id;
if (id > max)
max = id;
}
return max;
}
/// <summary>
/// Fix the IDs of all slide layouts by making sure that all the slide layout IDs in the
/// destination slide are unique.
/// </summary>
/// <param name="presPart" />
private static void FixSlideLayoutIds(PresentationPart presPart)
{
// Make sure that all slide layouts have unique ids.
foreach (SlideMasterPart slideMasterPart in presPart.SlideMasterParts)
{
foreach (SlideLayoutId slideLayoutId in slideMasterPart.SlideMaster.SlideLayoutIdList)
{
_uniqueId++;
slideLayoutId.Id = (uint)_uniqueId;
}
slideMasterPart.SlideMaster.Save();
}
}
我调用 Merge 函数的方式是:
string templateFilePath = @"C:\Users\mm\Desktop\testing pp\Presentation1.pptx";
string newFilePath = @"C:\Users\mm\Desktop\testing pp\Generated Presentation-105.pptx";
MergePresentation(templateFilePath, newFilePath);
有什么想法吗?
谢谢
最佳答案
我已经设法找到解决方案。将其张贴在这里以防其他人遇到此问题。
我曾经在生成的演示文稿上使用 OpenXml Sdk Validator 并发现了以下错误:该元素具有意外的子元素“http://schemas.openxmlformats.org/presentationml/2006/main:notesMasterIdLst” '
这使我注意到幻灯片中的注释。删除它们解决了问题,一切正常。
删除注释的代码(即使在PP中打开演示文稿时没有看到任何注释):
public static void RemoveNotesFromDoc(string docPath)
{
try
{
using (PresentationDocument pDoc =
PresentationDocument.Open(docPath, true))
{
foreach (var slide in pDoc.PresentationPart.SlideParts)
{
NotesSlidePart notes = slide.NotesSlidePart;
if (notes != null)
{
slide.DeletePart(slide.GetIdOfPart(slide.NotesSlidePart));
}
}
}
}
}
关于c# - 以编程方式生成的 PowerPoint 演示文稿破坏了 PowerPoint 2013,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26385512/
我正在尝试完成撤消/重做。我正在使用loadFromJSON(...)从我存储在数组中的 Canvas 状态重新构建 Canvas 。基本上,我的想法是破坏现有的 Canvas 并重新构建 Canva
在某些情况下,我有一个在 iframe 中打开的网页。当它被加载到那个 iframe 中时,我需要它将窗口位置设置为资源以下载文件(所有这些都是为了更新 GreaseMonkey 脚本......所有
当我创建 Intent 时: Intent in = new Intent(this, myclass.class); this.startActivity(in); 我创建了一个新的 Intent
我正在我本地版本的 Wordpress 网站上为 Wordpress 创建新的短代码。 在 functions.php 中,我添加了例如: function shortTest() { re
我正在为机械网站制作 JavaScript 闪卡游戏。因为我想将方程写在卡片上,所以我需要使用 delta(Δ) 符号。 一张卡片可能有:一侧是“功率方程”,另一侧是“P=W/Δt”。如果卡片从第一面
我编写了以下代码: document.addEventListener("DOMContentLoaded", ()=>{ let menu = document.querySelector(
我的浏览器同步工作正常,但我仍然很难处理之前的 html 的缓存。即使选中了 Chrome 的“禁用缓存”,甚至在隐身模式下也是如此! 要加载页面更改,我总是必须“清除缓存并硬重新加载”。 我想知道,
我注意到每次打开和关闭(通过单击菜单项或单击菜单外的某个区域)时,上下文菜单 ( Ext.menu.Menu ) s 不会从 DOM 中删除,它们只是以某种方式变得不可见。 如何改变这个? 最佳答案
给定依赖记录类型: Record FinPath : Type := mkPath { fp_head : S i; fp_tail
在 Husdon/Jenkins 中,我可以在构建被破坏时设置通知,以向进行破坏构建的 checkin 的用户发送电子邮件。如何在 Teamcity 中执行此操作? 我知道个人用户可以通过 Teamc
我注意到每次打开和关闭(通过单击菜单项或单击菜单外的某个区域)时,上下文菜单 ( Ext.menu.Menu ) s 不会从 DOM 中删除,它们只是以某种方式变得不可见。 如何改变这个? 最佳答案
使用 MIMEMultipart('alternative') 发送 html 和 pain-text 时 将 html 转换为文本时,html 的 anchor 换行 http://127.0.0.
每当我的应用程序最小化时,我都会启动一个服务,该服务向我的 HTTP 服务器发送拉取请求以检查通知,当应用程序恢复时,服务将被终止(以及计划的可运行项)。一切正常,直到我决定终止该应用程序(将其从正在
我意识到该框架处于 alpha 阶段,但正在实现 jQuery Mobile破坏了我的omniauth 身份验证。当我尝试登录时,一旦我尝试点击/auth/twitter Controller ,jQ
我对 Angular 比较陌生,经过几个小时的调试,我发现添加 jquery 时存在一些不兼容性。该指令在没有 jquery 的情况下工作正常,但在使用 jquery 时会中断:/ 这是一个 plnk
我发现,因为我正在处理的所有表单都有一个包含“name =“submit””属性的提交按钮,所以当我单击应该触发表单提交的链接时,触发器提交会中断. 有谁知道我该如何解决这个问题。 下面的 JQuer
我遇到了一个问题:/我得到了一个 CSS 东西,它使悬停时背景位置发生变化。但是当我在 javascript 中运行一个改变悬停的函数后,CSS 停止工作。 这是函数: function tree()
谁能给出一个完整的例子来说明 qooxdoo 1.6 中的 dispose 和 destruct 是如何工作的? ,我在 qooxdoo 演示或文档中找不到任何好的示例。 谢谢你的建议。 最佳答案 处
我对 JFormattedTextField 有疑问(我将它用作我们所有文本字段的基类)。 今天我尝试向该字段的文档添加一个文档过滤器,它工作得很好,但前提是它没有设置格式化程序工厂。 问题是,当设置
我有一个点击事件 $('#ship_Move').click(function (event) { event.stopPropagation();
我是一名优秀的程序员,十分优秀!