2.5.8 • Published 3 years ago
phoptimizer v2.5.8
PhOptimizer
This package optimizes images on localdisk via command line.
Usage
Installation
npm install -g phoptimizerStory
You have a example.jpg in current command line directory. Example.jpg is (4,752px X 3,168px) and 1.95MB.
Command
phoptimizer --file example.jpgResult
In current path we have a 2 images now. "example.jpg" , "example_optimised.jpg". Example.jpg is still (4,752px X 3,168px) and 1.95mB. Example_optimised.jpg is (1920px X 1280px) and 351kB.
Args
| Arg | Alias | Type | Description | Default | Example |
|---|---|---|---|---|---|
| --file | -f | string | File Name | ALL in path | example.jpg |
| --path | -p | string | Path Name | Current path (process.cwd()) | C:/users/phibersoft |
| --overwrite | -o | boolean | Optimized image will overwrite original image. | false | true |
| --width | -w | number | Image width | 1920 | 2400 |
| --height | -he | number | Image height | Auto by width | 1080 |
| --quality | -q | number | Image Quality | 70 | 100 |
Examples
Specific file with custom configuration
phoptimizer -f example.jpeg --height 1080 --width 1920 --quality 95 --overwriteSpecific path (All Files)
phoptimizer -p C:\\users\\spirn\\imagesSpecific path (Single File)
phoptimizer -p C:\\users\\spirn\\images -f example.jpeg