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
- Host: GitHub
- URL: https://github.com/kberov/imgresize
- Owner: kberov
- License: bsd-2-clause
- Created: 2017-10-07T22:54:00.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-10-09T22:17:32.000Z (over 8 years ago)
- Last Synced: 2025-04-10T00:55:07.440Z (about 1 year ago)
- Topics: files, go, golang, image-processing
- Language: Go
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- License: LICENSE
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 Красимир Беров */