npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

change-pdf

v1.0.11

Published

A node.js library to perform operation on pdf file

Downloads

44

Readme

change-pdf :

A node.js library to perform several operations on PDF file like Compress, Split, Count pages, Convert into images or thumbnails by using different tools those are best in terms of performance and memory utilization.

MUST : IT MUST REQUIRES SOFTWARES 1.qpdf Reference link - http://qpdf.sourceforge.net/

2.libvips with poppler supoort Reference link - https://github.com/jcupitt/libvips

3.ghostscript Reference link - https://www.ghostscript.com/

Installation :

npm install --save change-pdf

Usage :

It contains following functions to perform above described tasks :

1- compressPdf : This function compress given pdf file, save compressed pdf file to target path and returns promise. It takes two parameters first- pdf file path, second- target file path and one optional parameter.

example :

var changePdf = require("change-pdf");

changePdf.compressPdf(pdfPath, targetPath, quality)

function parameters :

  • pdfPath : Path of pdf file (Required)

  • targetPath : Path where you want to save compressed pdf file (Required)

  • quality: value of compressed pdf quality. it can only contain:(optional)

           'screen': selects low-resolution output similar to the Acrobat Distiller "Screen            Optimized" setting.,
           'ebook':  selects medium-resolution output similar to the Acrobat Distiller                 "eBook" setting,
           'printer':selects output similar to the Acrobat Distiller "Print Optimized"                  setting,
           'prepress':selects output similar to Acrobat Distiller "Prepress Optimized"                  setting,
           'default': selects output intended to be useful across a wide variety of uses,               possibly at the expense of a larger output file
             
          if no value is provided then value will be 'default'

2- splitPdf : This function splits given pdf file into different single page pdf files, save those pdf files to target path and returns promise. It takes two parameters first- pdf file path, second- target file path.

example :

var changePdf = require("change-pdf");

changePdf.splitPdf(pdfPath, targetPath)

function parameters :

  • pdfPath : Path of pdf file.
  • targetPath : Path where you want to save splitted pdf files.

3- genrateImage : This function converts given pdf file to different images and save it to target path and returns promise. It takes three parameters first- pdf file path, second- target file path and third optional parameter conversionType with the value "thumb" to generate thumbnails.

Note : if no value provided in third param then it makes image by default if thumb is provided then thumbnails will be generated.

example :

var changePdf = require("change-pdf");

changePdf.genrateTumbImage(pdfPath, targetPath, conversionType)

function parameters :

  • pdfPath : Path of pdf file.
  • targetPath : Path where you want to save compressed pdf file.
  • conversionType : "thumb" to make thumbnail sized image of pdf.(Optional)

4- countPages : This function is used to find total number of pages in pdf file and returns number. It takes pdf file path as a parameter.

example :

var changePdf = require("change-pdf");

changePdf.countPages(pdfPath)

function parameters :

  • pdfPath : Path of pdf file.