/instagram-filters

Instagram-like image filters

Primary LanguagePythonBSD 3-Clause "New" or "Revised" LicenseBSD-3-Clause

Instagram-filters

Instagram-like image filters.

Can be used in conjunction with the instagram-client to upload the image after applying a filter.

Dependencies

Instagram-filters depends on ImageMagick, which can be installed on a Mac with brew:

brew install imagemagick

Install

python setup.py install

Usage

First, import the client:

from instagram_filters.filters import *

Instanciate a filter and apply it:

f = Nashville("image.jpg")
f.apply()

Available filters:

  • Gotham
  • Kelvin
  • Lomo
  • Nashville
  • Toaster

Note The filters change the image in-place. Be sure to copy it before applying any filter if you want to copy the original image.

Tests

Run the tests with:

cd tests
python test.py

Credits

This library is inspired from the "Create instagram filters with php" tutsplus tutorial.