fancy
fancy

Reputation: 51383

Create Instagram-esque filters with javascript?

Can I create Instagram-esque filters with javascript?

The images can be processed client-side or server-side(node.js)

I could overlay some pngs and box-shadows with css to get a limited amount of similar effects, but I was wondering if there was anything out there that can truly process images like this in js.

Thanks!

Upvotes: 7

Views: 9113

Answers (4)

Vijay Boyapati
Vijay Boyapati

Reputation: 7728

Alex Michael has a fantastic open source javascript library for instagram filters: http://alexmic.github.com/filtrr/

Upvotes: 6

fancy
fancy

Reputation: 51383

I ended up finding this, http://vintagejs.com/

Upvotes: 5

user840774
user840774

Reputation: 19

I think all filters are public libs wrote in C/C++ that u can import in node =) Give a try

Upvotes: 0

pradeek
pradeek

Reputation: 22105

You could do it with canvas. See :

Making Image Filters with Canvas

Pixastic Image Processing Library

Upvotes: 3

Related Questions