创建 PowerPoint 文件的简单示例
我正在寻找一些有关如何添加图像和文本的示例代码将其输出为 PowerPoint 文件。 主机服务器没有 Office,并且不允许我安装任何东西,因此“使用 Open XML 格式 API 操作 Excel 2007 和 PowerPoint 2007 文件”对我没有帮助。 下面是输出 PowerPoint 的代码。我只是不知道如何添加文本和图像。
Response.ClearContent();
Response.AddHeader("content-disposition", "attachment;filename=Filename.ppt");
Response.ContentType = "application/powerpoint";
System.IO.StringWriter sw = new System.IO.StringWriter();
System.Web.UI.HtmlTextWriter htw = new System.Web.UI.HtmlTextWriter(sw);
Response.Write(sw.ToString());
Response.End();
I'm looking for some sample code on how to add an image and text & output it as a PowerPoint file.
The host server does not have Office and I'm not allowed to install anything so the "Manipulating Excel 2007 and PowerPoint 2007 Files with the Open XML Format API " will not help me. Below is the code the output the PowerPoint. I just don't know of to add text and images.
Response.ClearContent();
Response.AddHeader("content-disposition", "attachment;filename=Filename.ppt");
Response.ContentType = "application/powerpoint";
System.IO.StringWriter sw = new System.IO.StringWriter();
System.Web.UI.HtmlTextWriter htw = new System.Web.UI.HtmlTextWriter(sw);
Response.Write(sw.ToString());
Response.End();
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您无法使用 Open XML Format API,那么一个糟糕的方法是通过代码创建整个包/XML/ZIP,我认为这是一个糟糕的解决方案......
好文章如何使用 Open Xml API 创建 ppt
http://openxmldeveloper.org/articles/7429.aspx
祝你好运
If you cant use the Open XML Format API then a bad approach would be to create the whole package/XML/ZIP by code which I feel is a bad solution....
Good article how to create ppt using Open Xml API
http://openxmldeveloper.org/articles/7429.aspx
Good luck