请问aspose word组件:
可以将带svg的html文件插入word吗?
java版本。
谢谢!
请问aspose word组件:
可以将带svg的html文件插入word吗?
java版本。
谢谢!
@hzjianglf 这不是错误。
附加的 HTML 包含尺寸为 1000x10000 像素的大型 SVG 图像图。
将此 SVG 图像导入文档后,图像变得非常小且不可读。
SVG 图像插入一个文档页面并缩小以适合页面。事实上,SVG 图像的高度较低,可以将其剪切为 3200 像素。
尺寸为 1000x3200 像素的 SVG 图像看起来更易读。此外,文档的大小可以增加。
将高度剪切为 3200 像素后,您可以使用类似的代码。
var doc = new Document();
doc.FirstSection.PageSetup.LeftMargin = 0;
doc.FirstSection.PageSetup.RightMargin = 0;
doc.FirstSection.PageSetup.TopMargin = 0;
doc.FirstSection.PageSetup.BottomMargin = 0;
// doc.FirstSection.PageSetup.PageHeight = 1500;
var db = new DocumentBuilder(doc);
db.InsertImage("in.svg", 300, 800);
The issues you have found earlier (filed as WORDSNET-18635) have been fixed in this Aspose.Words for Java 24.7 update.