Is it possible to do image morphing in Node.js using Javascript? I'm trying to find out whether it's possible to do something like this. Are there any node.js libraries that could be used to implement image morphing?
Asked
Active
Viewed 1,446 times
0
-
I know of a program called xmorph that has a command-line interface - that might be a good starting point. – Anderson Green Oct 04 '12 at 23:24
-
Curious - what did you end up going with? – bryanmac Oct 10 '12 at 01:48
-
@bryanmac I decided to use xmorph - GraphicsMagick doesn't do image morphing. – Anderson Green Oct 10 '12 at 04:22
1 Answers
2
Not sure if this one meets your morphing needs but there's a GraphicsMajick module here:
You can also search for modules @ npmjs.org
It supports manipulations like blur, charcoal, chop, colorize, despeckle, dither, dissolve, emboss, equalize, fuzz, gaussian, implode,magnify, matte, etc... etc...

bryanmac
- 38,941
- 11
- 91
- 99
-
What types of image morphing capabilities does this module have? – Anderson Green Oct 05 '12 at 00:04
-
I mentioned some, the full list is about a third the way down the page under Methods, manipulations. – bryanmac Oct 05 '12 at 00:05
-
1There's a JavaScript image morphing library available: https://github.com/jembezmamy/morpher-js – Anderson Green Mar 25 '13 at 19:43