gpt4 book ai didi

pdf - Azure 应用服务 : Converting docx to pdf

转载 作者:行者123 更新时间:2023-12-04 16:12:49 25 4
gpt4 key购买 nike

有人知道 Azure 应用服务(标准层)是否支持将 docx 转换为 pdf。

我知道 GDI+ 问题,但我没有找到任何信息说明哪些部分不受支持,或者自从记录了这些限制后它是否发生了变化。

我问的原因是我已经测试了第三方组件(Aspose.Words for .NET),它可以成功地将测试 docx 文件转换为 pdf。

因此我想知道是否存在一组有限的受支持功能(因为 docx 文件仅包含 Logo 、文本和表格)或者我是否在不受支持的灰色区域中运行。

谢谢!

最好的问候,约翰

最佳答案

我安装 Aspose.Words for .NET并在我这边进行将 docx 转换为 pdf 的测试,并在我的 Azure 应用程序服务(标准应用程序服务计划/定价层)上托管 Web 应用程序,效果很好。

代码片段:

HttpPostedFile postedFile = SrcFileUpload.PostedFile;
string dstExtension = "pdf";
string dstFileName = Path.GetFileName(postedFile.FileName) + "_Converted." + dstExtension;
SaveFormat dstFormat = FileFormatUtil.ExtensionToSaveFormat(dstExtension);


Document doc = new Document(postedFile.InputStream);
doc.Save(Response, dstFileName, ContentDisposition.Inline, SaveOptions.CreateSaveOptions(dstFormat));
Response.End();

结果:

enter image description here

您还可以引用“How to Convert Documents in Windows Azure "显示了用于转换文档的完整代码。

关于pdf - Azure 应用服务 : Converting docx to pdf,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44248780/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com