pdforppt2img
v1.0.2
Published
pdf2png and pptx2pdf is major function
Downloads
11
Maintainers
Readme
pdf-ppt2image
安装必要依赖
- sudo yum install poppler-utils 安装 poppler 插件
- sudo apt install libreoffice-dev(libreoffice) 安装(libreoffice 软件)
- sudo apt install imagemagick (imagemagick ) 安装(imagemagick )
- 可使用 soffice --version ;convert --version 命令查看是否安装成功
使用
// 引入
const { pptx2pdf, pdf2png } = require("pdforppt2img");
pptx2pdf
const result = await pptx2pdf(enterPath, outputPath, type);
// enterPath 需要转换的文件路径 (格式:./your/path/fileName.pptx)
// outputPath 输入文件的路径 (格式:./your/path)
// type 转换格式(默认 pdf)
// 成功结果示例
{
success: true,
message: "File created successfully",
}
pdf2png
const result = await pdf2png(
enterPath, // 需要转换的文件路径 (格式:./your/path)
outputPath, // 导出路径并自定义文件名 (格式:./your/path/fileName)
type, // 文件格式 (默认 png)
ratio, // 分辨率(默认 100)
quality // 质量(默认 50)
);
// 成功结果示例
{
success: true,
message: 'File created successfully',
}