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

@dhemeira/convert-image

v1.5.0

Published

An npm package to mass convert image files to .webp or resize them.

Downloads

6

Readme

convert-image

This is a package for converting image files to .webp and/or to resize them to a given width and/or height. The results are placed inside the specified folder.

npm GitHub Repo stars GitHub package.json version (subfolder of monorepo) npm (scoped)

Usage:

Choose one of the following 3:

Install and use globally:

npm i @dhemeira/convert-image -g

After that, use this command to convert images:

convert-image

Use with npx:

Use this command to convert images:

npx @dhemeira/convert-image

Install and use in your project:

npm i @dhemeira/convert-image

Add it to your package.json scripts:

"scripts": {
  "convert-image": "convert-image",
  ...
}

After that, use this command to convert images:

npm run convert-image

Examples

Get command manual:

convert-image --help

Output:

Usage: convert-image [options] <input_directory>

Converts image files to .webp or resizes them and puts them into the specified output folder. Supported formats: .jpg, .png, .svg, .tiff, .gif and .webp

Arguments:
  input_directory    the input directory

Options:
  --output [output]  the output directory. If not specified, it will be input_directory\converted.
  --width [width]    resize the image to this width. If not specificed, the width will be the original width.
  --height [height]  resize the image to this height. If not specificed, the height will be the original height.
  --only [files...]  convert only these files.
  --fit [fit]        how the image should be resized/cropped to fit the target dimension(s), one of cover, contain or fill.
  -w, --webp         convert the image to .webp extension.
  -h, --help         display help for command

Converting example_input folder's content into .webp files and placing them into the default output folder

convert-image example_input --webp

Specify output to example_output folder

convert-image example_input --webp --output example_output

Resize the images to width 500px and keep aspect ratio

convert-image example_input --width 500

Resize the images to height 700px and keep aspect ratio

convert-image example_input --height 700

Resize the images to width 500px and height 700px. The resizing method is cover

convert-image example_input --width 500 --height 700

Resize image, convert it to .webp and save to example_output folder

convert-image example_input --width 500 --height 700 --webp --output example_output

Run the previous example only on file1.jpg and file2.png

convert-image example_input --width 500 --height 700 --webp --output example_output --only file1.jpg file2.png