Editor for Drawing canvas [closed]

一世执手 提交于 2020-01-01 03:25:10

问题


I am facing a problem for drawing a complex image using canvas tag and using JavaScript.

I need a tool, or we can say editor, by using which I can draw any image. It returns Javascript code using canvas, which I can include in html pages.

Thanks!


回答1:


I have a project where you can draw complex canvas shapes and export them into an HTML file. You can then edit the file as required

My project is at http://canvimation.github.com/

Hope this is of help




回答2:


For really complex images, use Adobe Illustrator to do the designing (a world class design editor).

Then save your image in .SVG format.

BTW, You can load the file (example "yourArt.svg") directly into an img tag.

But, more to your question, you can then use a canvas drawing library called FabricJS to read the svg and draw it to a canvas. The library website is: http://fabricjs.com/

Alternatively, you can use an online conversion tool to convert yourArt.svg into the required canvas drawing commands. A popular svg-to-canvas converter is: http://www.professorcloud.com/svg-to-canvas/

A word of warning...these techniques might require tweaking of the resulting canvas draw commands--especially if your artwork uses the more advanced techniques in Illustrator.

Your artwork can be very complex and still be handled! Check out the SVG section of the FabricJS demos: http://fabricjs.com/kitchensink/




回答3:


Another great online tool is called HTML Canvas Studio.

It behaves like other painting programs and when you finish, you can export the drawing to HTML+JS.

The tool can be found here: http://www.htmlcanvasstudio.com/



来源:https://stackoverflow.com/questions/15470485/editor-for-drawing-canvas

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!