Picsee

Easy Photo Management, Cropping, and Manipulation for NodeJS, Express.

This project is maintained by dlochrie

picsee

Description

Express-Compatible middleware that offers support for uploading photos, setting custom sizes, and storing them locally or remotely. API includes mechanism for cropping and resizing photos as well.

Goals

How it Works

Picsee allows you to define where and how you want to save your photos. Using the GD library, Picsee resizes your photo and saves it according to your specifications.

Typical Use Case: Profile Photo

If you are creating a form where your user is uploading a profile photo, you are most-likely going to want 3 versions of the photo:

You name them, thmb, med, and lrg and your team/company/UI/UX/etc determines that:

So, your thmb will be scaled and saved to 32*32, and your med will be rescaled so that it is 200 pixels wide by whatever height is proportional to the original.

Your photos are saved according to whatever naming conventions you provide:

Don't like underscores? Change the separator option.

Before your photos are saved, the original is moved to a staging directory, which you define. Here the Mime type is checked, and it is rejected if it is not a "jpg", "png", or "gif".

Install

npm install picsee

Prerequisite: GD

Picsee currently only supports GD.

You will need to have GD installed so that node-gd (a dependency) can compile. Please have GD installed first.

GD on Mac

  1. Get HomeBrew
  2. brew install gd

GD on Ubuntu

apt-get install libgd2-xpm-dev

App Setup

var picsee = require('picsee');

Define Options

Option Description
docRoot root path to your images, ie /path/app/public/images/
urlRoot base URL to view your images when they are uploaded
stagingDir sandboxed (temporary) directory for uploading photos
processDir directory to save processed photo(s)
uploadDir permanent directory for saved photo(s)
originalDir location of where the original is stored, if this option is omitted, or set to false, then originals will not be stored
versions versions of photos with width and height option * Format: { "version name": { w: 200, h: 200 } }.
separator character to use when concatenating file names, ie filename_thumb where filename is the original filename, and thumb is the name of the version. - or _ should work.
directories [under construction] Convention for storing files, i.e., use one directory and name files with versions attached, or store each file in a different directory named after the version?
namingConvention how to name files? * date * original * custom
maxSize Max Size (in KB) allowed
jpgQlty Quality of Jpg (Up to 100, 100 being Highest)
gifQlty Quality of Gif (Up to 100, 100 being Highest)
pngQlty Quality of Png (Up to 10, 10 being Highest)
inputFields Given a form with multiple inputs, which input(s) contain a photo? Ex: <input type="file" name="profile_photo" /> will require that you add profile_photo to the array of input fields. You can add as many as you want, and Picsee will process them all.
Example Usage
var docroot = '/var/www/myproject/';
var options = {
  stagingDir: '/full/path/outside/of/project',
  processDir: docroot + 'public/photos/,
  versions: [  
    { "thmb": { w: 32, h: 32 } },   
    { "profile": { w: 200, h: null } },  
    { "full": { w: null, h: null } }  
  ],
  separator: '_',  
  directories: 'single',
  namingConvention: 'date',
  inputFields: ['profPhoto', 'other']
}

NOTE: For security purposes, where you put the stagingDir is important. It is in the staging directory that the file is being validated as a real file, and its mime-type is checked. If it does not pass validation, it won't make it into your application's photo location.

Configure

app.configure(function (){
  // Set up your options first
  app.use(picsee.initialize(options));
  app.use(app.router);
});

Create Directories

Picsee requires that any directory you are uploading to exists and is writeable by Node or whatever user is running the app.

Usage with Express

See: pisee-looksee.

License

The MIT License (MIT)

Copyright (c) 2013 Daniel Lochrie

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.