4

Are there any reasonably easy to use JS frameworks/libraries for image effects, that would allow me to like converting an image (or part of an image) to b/w, sepia or duotone?

Or, for example, that would allow me to overlap images and use blending modes like Screen, Multiple, etc?

I tend to use jQuery, so a jQuery plugin would be ideal.

Benjamin Allison
  • 2,134
  • 3
  • 30
  • 55

3 Answers3

1

Maybe this jQuery plugin could be useful for you. It can convert an image to b/w or halftone.

dfsq
  • 191,768
  • 25
  • 236
  • 258
0

For JS only this is hard to do, and I personally am not aware of any way to do this at present. There are web services out there that will do that. One such is http://developers.aviary.com/.

Joshua
  • 3,615
  • 1
  • 26
  • 32
0

It is pretty easy to (sepia) tone an image that has been drawn to a <canvas>, if you OK with using those:

How can I use a gradient map to tone a HTML5 canvas with an image in the canvas.

Community
  • 1
  • 1
Simon Sarris
  • 62,212
  • 13
  • 141
  • 171