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 🙏

© 2026 – Pkg Stats / Ryan Hefner

pdf-to-jpg-cli

v1.0.2

Published

CLI tool to convert all PDF files in a directory to JPG images

Readme

PDF to JPG CLI

A Node.js command-line tool that converts all PDF files in the current directory to high-quality JPG images with customizable maximum width. Perfect for batch converting PDFs to images for thumbnails, previews, or web use.

Installation

Install globally from npm to use the pdftojpg command anywhere:

npm install -g pdf-to-jpg-cli

Usage

After global installation, navigate to any directory containing PDF files and run:

pdftojpg [options]

Options

  • -w, --width <number> - Maximum width in pixels (default: 1275)
  • -h, --help - Show help message

Examples

# Convert all PDFs with default settings (max width: 1275px)
pdftojpg

# Convert with custom max width (800px)
pdftojpg -w 800

# Convert with custom max width (2000px)  
pdftojpg --width 2000

# Show help
pdftojpg --help

Development

If you want to contribute or modify this tool:

# Clone the repository
git clone https://github.com/kennedyrose/pdf-to-jpg-cli.git
cd pdf-to-jpg-cli

# Install dependencies
npm install

# Run locally
node index.js -w 1500

# Or install globally from source
npm install -g .

Features

  • Converts all PDF files in the current directory to JPG format
  • High-quality output at 200 DPI
  • Maintains original aspect ratio
  • Customizable maximum width with automatic height scaling
  • Shows conversion progress and final dimensions
  • Automatic PDF dimension detection

Requirements

  • Node.js
  • System dependencies for PDF processing:
    • Poppler - Provides pdfinfo command to read PDF dimensions and metadata
    • GraphicsMagick - Image processing library for high-quality PDF to image conversion
    • Ghostscript - PostScript and PDF interpreter required by GraphicsMagick for PDF rendering

Installing System Dependencies

macOS:

brew install poppler graphicsmagick ghostscript

Ubuntu/Debian:

sudo apt-get install poppler-utils graphicsmagick ghostscript

Windows:

  • Install poppler: Download from http://blog.alivate.com.au/poppler-windows/
  • Install GraphicsMagick: http://www.graphicsmagick.org/download.html
  • Install Ghostscript: https://www.ghostscript.com/download/gsdnld.html

How It Works

  1. Scans current directory for PDF files
  2. Uses pdfinfo to detect original PDF dimensions
  3. Calculates scaling to fit within specified maximum width
  4. Converts PDF to JPG using GraphicsMagick with Ghostscript backend
  5. Outputs high-resolution JPG files with preserved aspect ratios