Reputation: 51383
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
Reputation: 7728
Alex Michael has a fantastic open source javascript library for instagram filters: http://alexmic.github.com/filtrr/
Upvotes: 6
Reputation: 19
I think all filters are public libs wrote in C/C++ that u can import in node =) Give a try
Upvotes: 0
Reputation: 22105
You could do it with canvas. See :
Making Image Filters with Canvas
Pixastic Image Processing Library
Upvotes: 3