Planning a project that essentially involves manipulating text over a supplied image and saving the result to the server as a new high-res image / pdf. Manipulations include dragging the text, editing, size, shadow, different fonts and lots of other things familiar to anyone that uses common CSS.
A while back, this would be clearly seen as a job for Flash. My question is: can HTML5 + JS accomplish this alone (with something like phantomjs for the image generation)?
Here are the Pros and Cons I can think of when considering this question:
Flash:
Pro: Clearly capable of handling such a web-app
Con: No mobile support, should this app later be adapted for mobile use.
HTML5 / JS:
Pros: Native to the browser so "feels right", lots of needed features built in (via CSS)
Cons: Appears to be less robust and more difficult to give an even user experience (even with disabling IE usage), will probably require some fiddling to get generated images looking exactly as in the browser (as they must)
SVG / Canvas:
Pro: More robust that plain HTML/JS
Con: Lots of needed text manipulations will have to custom coded, even if using a libary such as FabricJS
Did I miss anything?
Your input is much appreciated!
Note to Mods: If this question is not fit for SO, feel free to remove it :)

toDataURL, the code should be not so complicated. I would use cgSceneGraph to manipulate easily images and text. – Gwennael Buchet Feb 25 at 19:24