An open API service indexing awesome lists of open source software.

https://github.com/kberov/imgresize

imgresize - A naive script for resizing images in a directory in depth
https://github.com/kberov/imgresize

files go golang image-processing

Last synced: about 1 year ago
JSON representation

imgresize - A naive script for resizing images in a directory in depth

Awesome Lists containing this project

README

          

Command imgresize - A naive program for resizing images in a tree of directories

Each file is processed in its own goroutine, which means imgresize should be very fast.
Currently supported file formats are JPEG, GIF and PNG.

Usage of imgresize:
-dir string
root folder to search for images (default "./")
-maxheight uint
maximal height of the resized image (default 800)
-maxwidth uint
maximal width of the resized image (default 800)

This program depends on github.com/nfnt/resize

/* Copyright 2017 Красимир Беров */