Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/honza/photolab.coffee
Photolab is a photo organizational and sorting tool.
https://github.com/honza/photolab.coffee
Last synced: about 5 hours ago
JSON representation
Photolab is a photo organizational and sorting tool.
- Host: GitHub
- URL: https://github.com/honza/photolab.coffee
- Owner: honza
- License: other
- Created: 2011-04-17T18:07:13.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2011-05-26T10:07:54.000Z (over 13 years ago)
- Last Synced: 2024-04-16T01:44:55.826Z (7 months ago)
- Language: CoffeeScript
- Homepage: https://github.com/honza/photolab.coffee
- Size: 165 KB
- Stars: 4
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Photolab.coffee
===============Photolab is a photo organization and sorting tool.
Very often, I find myself importing a few hundred pictures from my camera
into a directory like this:20110423
All the files in that directory have the default filenames given by the
camera. Now I need to sort through all the files, ditch the ones that are
obviously bad, and copy them over to a new directory, rename them to
something more useful.What Photolab will do for you is the following. You run it like so:
$ coffee photolab.coffee /path/to/your/directory
It will scan the directory for any image files and show you a list. It will
ask you if you'd like to proceed. It will then make 800x533 thumbnails for
your in a `tmp` directory inside your main directory. When the thumbnails are
ready, you will be presented with a long HTML page with a list of images. For
each image, you can click (+) or (x) to either keep it or discard it. When
you're done, you can click the Process me button. Photolab will then take
your selection and copy the high resolution files into a `done` directory.Supported image formats:
* JPEG
* RAW as supported by `dcraw`**IMPORTANT**: Photolab will never alter your original files.
### Annotated source
You can find the annotated source here:
[http://honza.github.com/photolab.coffee/](http://honza.github.com/photolab.coffee/)
### Dependencies
* node.js
* npm
* npm install -g coffee-script
* npm install express
* npm install jade
* npm install imagemagickIf you are going to use RAW images, you also need to install `dcraw`:
brew install dcraw
### Documentation
The `docs` directory contains an annotated source of the `photolab.coffee`
file.### License
Photolab.js is licensed under the terms of the 3-clause BSD license.