需要以编程方式将图像转换为 图片 文档?借助Aspose.Words for Node.js via .NET,任何开发人员只需几行 JavaScript 代码即可将图像转换为 图片 文档格式。
现代图像处理 JavaScript API 从具有专业品质的图像创建 图片 文档。直接在浏览器中测试最高质量的图像到 图片 的转换。强大的 JavaScript 库允许将图像转换为许多流行的格式。
以下示例演示如何在 JavaScript 中将图像转换为 图片 文档格式。
按照简单的步骤将图像文件转换为 图片 文档格式。从本地驱动器读取图像,然后将其简单地保存为文档格式,并通过 图片 文档扩展名指定所需的文件格式。对于图像读取和 图片 文档写入,您可以使用完全限定的文件名。
npm install @aspose/words
复制
const aw = require('@aspose/words');
var doc = new aw.Document()
var builder = new aw.DocumentBuilder(doc)
builder.insertImage("Input.png")
doc.save("Output.docx")
const aw = require('@aspose/words');
var doc = new aw.Document("Input.png")
doc.save("Output.docx")
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}.docx`);
}
const aw = require('@aspose/words');
var doc = new aw.Document()
var builder = new aw.DocumentBuilder(doc)
builder.insertImage("Input.png")
doc.save("Output.docx")
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.docx", new aw.Saving.ImageSaveOptions(aw.SaveFormat.docx))
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.
您可以将图片转换为许多其他文件格式: