Editor for Drawing canvas [closed]

2020-06-04 09:15发布

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!

3条回答
姐就是有狂的资本
2楼-- · 2020-06-04 09:53

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

查看更多
爷、活的狠高调
3楼-- · 2020-06-04 09:58

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/

查看更多
够拽才男人
4楼-- · 2020-06-04 10:03

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/

查看更多
登录 后发表回答