需要以 PNG 图像 SVG 格式吗?随着Aspose.Words for Node.js via .NET任何开发人员可以轻松地将 PNG 成 SVG 只需几行 JavaScript 代码。
现代图像处理 JavaScript API 从 PNG 图片高速 SVG 直接在浏览器中 PNG 到 SVG 图像转换的质量。强大的 JavaScript 库允许将 PNG 图像转换为许多流行的图形格式。
以下示例演示如何将 PNG 中的 SVG JavaScript 。
按照简单的步骤将 PNG 转换为 SVG 格式。从本地驱动器读取 PNG 图像,然后将其保存为 SVG SVG 扩展名指定所需的图像格式。对于 PNG 读取和 SVG 写入,您可以使用完全限定的文件名。输出 SVG 内容将与原始 PNG 图像相同。
npm install @aspose/words
复制
const aw = require('@aspose/words');
var doc = new aw.Document()
var builder = new aw.DocumentBuilder(doc)
shape = builder.insertImage("Input.png")
shape.getShapeRenderer().save("Output.svg", new aw.Saving.ImageSaveOptions(aw.SaveFormat.Svg))
const aw = require('@aspose/words');
var doc = new aw.Document("Input.png")
doc.save("Output.svg")
const aw = require('@aspose/words');
var doc = new aw.Document("Input.png")
for (var page = 0; page < doc.pageCount; page++) {
var extractedPage = doc.extractPages(page, 1);
extractedPage.save(`Output_${page + 1}.svg`);
}
const aw = require('@aspose/words');
var doc = new aw.Document()
var builder = new aw.DocumentBuilder(doc)
builder.insertImage("Input.png")
doc.save("Output.svg")
const aw = require('@aspose/words');
var doc = new aw.Document()
var builder = new aw.DocumentBuilder(doc)
shape = builder.insertImage("Input.png")
shape.getShapeRenderer().save("Output.svg", new aw.Saving.ImageSaveOptions(aw.SaveFormat.svg))
We host our Node.js via .Net packages in NPM repositories. Please follow the step-by-step instructions on how to install "Aspose.Words for Node.js via .NET" to your developer environment.
This package is compatible with Node.js 14.17.0 or higher.
您可以将PNG转换为许多其他文件格式: