Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to load canvas with two or three images from database.

I have the page working so I can move images and re-size them like so.... http://www.html5canvastutorials.com/labs/html5-canvas-drag-and-drop-resize-and-invert-images/

but now I woulod like to have a (save image) button under the canvas so when you are done moving and adjusting your images on the canvas you can save the canvas as one jpg

Is it possible to ad a save canvas or save Image button with the code linked to above. I have looked but can't find anything this simple.

I don't need any fancy image editor apps just exactly what is in the example above

thanks

share|improve this question

2 Answers

Does this help? http://www.html5canvastutorials.com/advanced/html5-canvas-save-drawing-as-an-image/

share|improve this answer
They are using different canvas codes. the link you posted uses the canvas tag. The one I posted uses <div id="container"> I don't know if they can work together.. or I don't know how to. – TacoFiesta Dec 16 '11 at 23:30
OK, yikes; it looks like that code does not use a single canvas to draw on; instead it creates many canvases and fiddles with their z-index. Since apparently there isn't a single canvas that contains the whole picture, I don't know if it will be possible to save the composite. – smendola Dec 17 '11 at 0:25
For anyone else that is trying to save a canvas as a bitmap: see this fiddle: jsfiddle.net/smendola/PRmzT . It comes as close as opening a window with the image to be saved, and the user needs to save it explicitly. It looks like the API necessary to actually initiate a save, canvas.toBlob() is not implemented in either FF or Chrome. – smendola Dec 17 '11 at 0:27

Saving a canvas as an image is one of the features of the Canvas and is quite easy. You can use a simple event handler or form submit handler in javascript to implement this. Here's a code sample using jQuery to obtain the canvas and redirects to a png of the canvas contents. The key function is toDataURL(). Read more about it here http://www.w3.org/TR/html5/the-canvas-element.html#dom-canvas-todataurl

canvas = $("#maincanvas").get(0);

.. your drawing operations here ...

// The save image button event handler 
var toPNG = function() {
  return window.location = canvas.toDataURL('image/png');
};
$('button#save').click(toPNG);
share|improve this answer
It doesn't look as if he has a "main canvas"... – smendola Dec 17 '11 at 0:29
TacoFiesta - awesome name – simianarmy Dec 17 '11 at 4:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.