This is my very first post at my first blog so I am now really exciting. I am not sure how long I could keep this blog updated but there is a saying Beginning goes half of the way..(= Well beginning is half done). OK let's get it cracked. HTML 5 Canvas - Painting Making a web application that allows users to draw on a canvas requires several important steps: setting up your HTML document with a canvas context (a canvas element with an id ), setting up your script to target that canvas context and draw inside it and adding the required mouse event handlers for user interaction and associated logic. Once the event handlers are in place, it's then fairly simple to add any desired functionality. My goal of this article is to import image into canvas then to edit it with several painting tools and to end up saving as another format. We shall begin with a minimal HTML document: <html lang="en"> <head meta charset="utf-8"...