I will be needing to create non regular shaped buttons for a html page. And i have several of these. And it would take me a very long time to recreate these shapes manually using svg elements. Straight lines are easy, curves on the other hand is where it gets really hard
Are there tools which easily lets me convert these drawings to path element quickly? Or are there other ways to approach the problem? This will be deployed on embedded devices where there will be no internet connection so external href are not an option, at the same time using heavy libraries are a not an option also as im only using the flash memory. I pretty much have space for about 1000-2000 lines of html code.
The important characteristics these buttons must have is i should be able to detect the basic button stuff
- click - to trigger some javascript functions
- hover - for me to change the color of the button slightly, to indicate which button the mouse is hovering
- long presses - i need this for some of the buttons with special functionality
