Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 :)

share|improve this question
If you allowed third-party browser plugins, you forgot to mention Adobe Shockwave, Microsoft Silverlight and Oracle Java. – Ivan Kuckir Feb 25 at 19:02
Correct. Those would all be like Flash for my purposes. – Mendel Feb 25 at 19:12
Canvas seems to be the right way : the resulting image will be easy to get with a call to 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
Thanks @GwennaelBuchet. Interesting framework, though it seems a bit animation-centric. – Mendel Feb 25 at 19:30
The animation engine is a module around the core of the framework, as the event manager and the collision manager. The core of the framework let you define your own extensions which will inherit of all the features of the framework. Of course, it already provides a lot of extensions like images, text, particle engine, ..., ... :) – Gwennael Buchet Feb 25 at 19:34
show 4 more comments

closed as not a real question by Diodeus, deceze, gnat, Sankar Ganesh, Rikesh Feb 27 at 6:29

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

A good way to do what you want will be to use the canvas element :

One con for canvas : it will not work on old versions of IE.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.