在 JavaScript 中将 图片转换为PDF

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

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

查看代码片段

使用 JavaScript 将图像转换为 PDF

需要以编程方式将图像转换为 PDF?借助Aspose.Words for Node.js via .NET,任何开发人员只需几行 JavaScript 代码即可将图像转换为 PDF 格式。

现代图像处理 JavaScript API 从具有专业品质的图像创建 PDF。直接在浏览器中测试最高质量的图像到 PDF 的转换。强大的 JavaScript 库允许将图像转换为许多流行的格式。

在 JavaScript 中将图像保存为 PDF

以下示例演示了如何在 JavaScript 中将图像转换为 PDF。

按照简单的步骤将图像文件转换为 PDF 格式。从本地驱动器读取图像文件,然后将其保存为可移植文档格式,并通过 PDF 扩展名指定所需的文件格式。对于图像读取和 PDF 写入,您可以使用完全限定的文件名。

JavaScript代码示例将PNG转换为PDF格式
上传您要转换的文件
运行代码
从列表中选择目标格式
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.pdf")
const aw = require('@aspose/words'); var doc = new aw.Document("Input.png") doc.save("Output.pdf") 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}.pdf`); } const aw = require('@aspose/words'); var doc = new aw.Document() var builder = new aw.DocumentBuilder(doc) builder.insertImage("Input.png") doc.save("Output.pdf") 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.pdf", new aw.Saving.ImageSaveOptions(aw.SaveFormat.pdf))
运行代码
在社交媒体上分享代码:

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

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

JavaScript库将图片转换为PDF

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. 版权所有。