Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

gab-images-optimizer

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gab-images-optimizer

A versatile command-line utility for image optimization and conversion.

  • 1.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

gab-images-optimizer

Version: 1.0.0

Author: Gabriel Rubio

Description

gab-images-optimizer is a versatile command-line utility for image optimization and conversion. It allows you to optimize one or more images in a specified folder using various options, including resizing, quality adjustment, output format selection, and specifying a destination folder for the optimized images. It will maintain the same folder structure as the original.

Installation

To use gab-images-optimizer, you can install it globally using npm:

npm install -g gab-images-optimizer

Usage

After installation, you can use the CLI with the following command:

gio compress route [options]

Options

  • -r, --resize <width>: Resize images with a maximum width in pixels.
  • -q, --quality <quality>: Set the quality of the optimized images (default is 70).
  • -f, --format <format>: Specify the output format for the optimized images (e.g., png, jpg, webp).
  • -d, --destination <path>: Specify the destination path to create the new images folder (default is the current folder where the program is executed).

Examples

  1. Optimize images from actual route with default options, just add a point in the end:
gio compress .
  1. Optimize images in a specific folder (../test/folder_name/) with default settings:
gio compress ../test/folder_name/
  1. Optimize just one image, quality 70 and new format webp and saving where the command is being executed:
gio compress ../test/image_name.png/ -q 70 -f webp
  1. Optimize images in the actual folder, sending all of them (folders and images) to a specific route with a rezise of 400px taking width as base:
gio compress ../test/folder_name/ --quality 60 --format jpg --resize 400 --destination ../../documents/new_folder/

or

gio compress ../test/folder_name/ -q 60 -f jpg -r 400 -d ../../documents/new_folder/

FAQs

Package last updated on 12 Sep 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc