在 JavaScript 中将 图片转换为SVG

用于将图片转换为SVG的高速Node.js库

使用Node.js以编程方式将 图片 转换为 SVG。 探索Node.js的强大功能,实现高效且可扩展的 图片 到 SVG 转换。

查看代码片段

转换 图片 到 SVG 在 JavaScript

需要以 图片 转换为 SVG 图像吗?使用Aspose.Words for Node.js via .NET任何开发人员都可以轻松地将 图片 转换为 SVG 图像格式,只需几行 JavaScript 代码。

现代文档处理 JavaScript API 从 图片 高速 SVG 直接在浏览器中 图片 到 SVG 转换的质量。强大的 JavaScript 库允许将 图片 文件转换为许多流行的图像格式。

保存 图片 如 SVG 在 JavaScript

下面的例子演示了如何转换 图片 为 SVG 画面中 JavaScript 。

按照简单的步骤将 图片 文件转换为 SVG 图形格式。从本地驱动器读取 图片 ,然后将其保存为 SVG SVG 扩展名指定所需的图像格式。对于 图片 读取和 SVG 写入,您可以使用完全限定的文件名。输出 SVG 图形内容将与原始 图片 文件相同。

JavaScript代码示例将PNG转换为SVG格式
上传您要转换的文件
运行代码
从列表中选择目标格式
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))
运行代码
在社交媒体上分享代码:

如何在 JavaScript 中将 图片 转换为 SVG

  1. Aspose.Words for Node.js via .NET安装 Aspose.Words。
  2. 将库引用(导入库)添加到您的JavaScript项目。.
  3. 在JavaScript打开源图片文件。.
  4. 调用save()方法,传递带有SVG扩展名的输出文件名。.
  5. 图片转换的结果SVG 。.

JavaScript库将图片转换为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.

System Requirements

This package is compatible with Node.js 14.17.0 or higher.

5%

订阅 Aspose 产品更新

获取直接发送到您的邮箱的每月通讯和优惠。

© Aspose Pty Ltd 2001-2024. 版权所有。