Goresize, the CLI app to resize images

GoResize

Goresize is a small and simple script to resize all images inside a folder, including subfolders.

It is developed with Go and it is based on the package Imaging

Download

You can download it from GitHub: https://github.com/antsanchez/goresize

Usage

You can set the desired width and height as well as the quality using the following arguments:

FlagTypeDefaultExplanation
-dstring.Directory where to resize images
-wint1224Desired image width, in pixels. Setting it to 0 will keep the ratio.
-hint0Desired image height, in pixels. Setting it to 0 will keep the ratio.
-qint80Desired image quality, from 0 to 100 (lower to better)
// This will resize all images inside mydir to 400x400px and save them with a quality of 70
$ goresize -d=mydir -w=400 -h=400 q=90

// This will resize all images inside mydir to a width of 400px maintaining the original ratio and save them with a quality of 90
$ goresize -d=mydir -w=400 q=70

Image quality

Image quality argumentw will be applied only to images of type JPG or PNG.

For JPG images, the indicated ratio will be applied.

For JPG images, the ratio will be converted to the PNG compression level of the image/png Go package, as follows:

100NoCompression
80 - 99DefaultCompression
60 - 79BestSpeed
0 - 60BestCompression

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

Based on the package Imaging