创建 PowerPoint 文件的简单示例

发布于 2024-08-08 13:02:39 字数 583 浏览 5 评论 0原文

我正在寻找一些有关如何添加图像和文本的示例代码将其输出为 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

長街聽風 2024-08-15 13:02:39

如果您无法使用 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文