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 convert an HTML5 canvas to an image. This is what I got so far:

var tmp_canvas = document.getElementById('canvas');
var dataURL = tmp_canvas.toDataURL("image/png");
$('#thumbnail_list').append($('<img/>', { src : dataURL }).addClass('image'));

but the problem is that I get this code:

<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAZAAAAEsCAYAAADtt+XCAAAgAElEQVR4nNS6Z1xVaZbvv/c+CVOZc6mYEMlJMZRizgljGRARs6AgOSMGQATBSM5ZyTkoOQkSzJWrp3t6etLt6Z7pmf/c++L7f3EOiBZW2dM9dz73xfdzztl7n3Oe/Txrrd9a69mCTC4gkwvIZAKSTECUBARRQBA+jii+46f.......class="image">

I want a normal image path that the user can download!

Any help?

share|improve this question
What you are getting is base64 representation of that canvas to image, I think you would have to covert it to bytes and then save those bytes into an image file that you want. – yogi Oct 9 '12 at 9:11
You could add a simple prompt to tell the user to right click on the generated thumbnail and hit 'save target as' – boz Oct 9 '12 at 9:11

3 Answers

up vote 2 down vote accepted

Take this:

<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUg...." class="image" />

And convert it to this by replacing the tags and the mime type:

<a href="data:application/octet-stream;base64,iVBORw0KGgoAAAANSUhEUg....">Download</a>

Telling the browser that the data is an application-type, it will ask you to save it on your hard-disk.


EDIT:

As Adnan said in the comments below (@Adnan: I upvoted yours as this is actually a big problem): There is no standard way to define a filename using this method, but there are two approaches which might work in some browsers.

A) The download-attribute

<a download="image.png" href="...">

(Introduced by Google Crome)

b) Defining HTTP-headers within the data-URL

<a href="data:application/octet-stream;headers=Content-Disposition%3A%20attachment%3B%20image.png;base64,iVBORw0KGgoAAAA">

(Worked at least in some older versions of Opera) Here is some discussion about this.

Looking into the Bug/Feature-Tracking systems of the major browsers shows that defining a filename is a quite big wish of the community. Maybe we will see a cross-browser compatible solution in near future! ;)

share|improve this answer
1  
Unfortunately you cannot specify a file name this way. – Adnan Oct 9 '12 at 9:23

You have 2 options (both work on almost all browsers):

1- POST the data to the server:
On the server you'd have a script that will handle the data and then tell the browser to prompt the user for download.

header("Content-Description: File Transfer");
header("Content-Disposition: attachment; filename=something.png");
header("Content-Type: image/png");
echo base64_decode($_POST['imageData']);
exit;

2- Prompt the user for download using Downloadify

<div id="clickMe"></div>

Downloadify.create( 'clickMe', {
   data: base64String,
   dataType: 'base64',
   filename: 'something.png'
});
share|improve this answer

You can right-click and Save As... on a canvas just like you can on an image.

share|improve this answer

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.