wtujvk

Results 6 comments of wtujvk

已经安装了最新版的Firefox。 是否需要配置什么?

66.0.2 (64 位), win10

one solution is use nuget packages and save as a new file. `using Spire.Doc;` `using System.IO;` `using (Document document = new Document(filePath))` `var newFilePath = "newfile.docx";` `document.SaveToFile(newFilePath, FileFormat.Docx);` `return newFilePath;`...

Oh, the question occur in Version: (2.11.3), but when I update to 2.12.1,use code ```csharp var openSettings = new OpenSettings() { RelationshipErrorHandlerFactory = p => new RemoveMalformedHyperlinksRelationshipErrorHandler(p) }; using (WordprocessingDocument...

I think the reason is that package ' System.IO.Packaging.Package'. I need to find a way to abandon the invalid part, not abandon the docx file. I need to render a...

我这边在调用接口上传永久素材的时候也出现The operation was canceled了。 查看了下,接口默认时间是10秒。尝试把超时时间调大些。 `MediaApi.UploadForeverMedia(accessTokenOrAppId, physicFilePath, UploadForeverMediaType.image)` 改为 `MediaApi.UploadForeverMedia(accessTokenOrAppId, physicFilePath, UploadForeverMediaType.image, 30 * 1000)` 修改后暂时没有出现The operation was canceled. 了。 图片素材大小限制是10M, 所以可能会有大文件。对于上传文件的接口来说,超时时间设置为10秒不一定够。 [新增永久素材](https://developers.weixin.qq.com/doc/offiaccount/Asset_Management/Adding_Permanent_Assets.html)