選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
Kalimuthu Selvaraj 119b6e293a Updated .readme, package.json and core files. 5年前
source Updated .readme, package.json and core files. 5年前
test Updated .readme, package.json and core files. 5年前
.gitignore Completed document conversion to pdf or(and) image. 5年前
README.md Updated .readme, package.json and core files. 5年前
convert.js Updated .readme, package.json and core files. 5年前
package.json Updated .readme, package.json and core files. 5年前
sample.js Updated .readme, package.json and core files. 5年前

README.md

convert-pdf-img

Converts .ppt .pptx .odp and .key file to pdf or/and image(png, jpg, jpeg and etc..)

Dependencies

Please install libreoffice, imagemagick and might required ghostscript for Mac os (Note: Please do restart your machine after installed all required software.)

Usage Example

// Import convert module
const document = require("./convert");

const options = {
  libreofficeBin: "C:\\Program Files\\LibreOffice\\program\\soffice.exe", // Optional
  sourceFile: "C:\\convert-pdf-img\\sample.pptx", // .ppt, .pptx, .odp, .key and .pdf
  outputDir: "C:\\convert-pdf-img\\output",
  img: false,
  imgExt: "jpg", // Default value png
  reSize: 800, // Default Resize is 1200
  density: 120, // Default density value is 120
};

// Convert document to pdf and/or image
document.convert(options, (err, res) => {
  if (err) console.log(err.message);
  console.log(res);
});