Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/s3ththompson/collage
🖼 Serve random images from a folder as a collage.
https://github.com/s3ththompson/collage
Last synced: about 1 month ago
JSON representation
🖼 Serve random images from a folder as a collage.
- Host: GitHub
- URL: https://github.com/s3ththompson/collage
- Owner: s3ththompson
- Created: 2015-11-04T09:01:53.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-11-04T09:06:12.000Z (about 9 years ago)
- Last Synced: 2024-08-01T13:28:33.396Z (3 months ago)
- Language: Go
- Homepage:
- Size: 1.24 MB
- Stars: 14
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
![Preview](example.png)
## Collage
Simple CLI to serve random images from a folder as a collage.
![Terminal](usage.png)
### Installation
```
$ go get github.com/s3ththompson/collage
```### Usage
```
collage [options...] [FOLDER]
Options:
-n Number of images to display (randomly) from folder (default 100)
```### Example
- Serve all the photos in my home directory
```
$ collage ~/
Collage of [100] images from [/Users/seththompson] 🎨
Serving on http://localhost:2222
```
- Serve 10 random photos from my pictures```
$ collage ~/Pictures -n 10
Collage of [10] images from [/Users/seththompson/Pictures] 🎨
Serving on http://localhost:2222
```