I have a regular HTML page with some images (just regular HTML tags). I\'d like to get their content, base64 encoded preferably, without the need
In HTML5 better use this:
{ //... canvas.width = img.naturalWidth; //img.width; canvas.height = img.naturalHeight; //img.height; //... }