Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Here's a noodle scratcher.

Bearing in mind we have HTML5 local storage and xhr v2 and what not. I was wondering if anyone could find a working example or even just give me a yes or no for this question:

Is it possible to Pre-size an image using the new local storage (or whatever), so that a user who does not have a clue about resizing an image can drag their 10mb image into my website, it resize it using the new localstorage and THEN upload it at the smaller size.

I know full well you can do it with Flash, Java applets, active X... The question is if you can do with Javascript + Html5.

Looking forward to the response on this one.

Ta for now.

share|improve this question

2 Answers

up vote 18 down vote accepted

Yes, use the File API, then you can process the images with the canvas element.

This Mozilla Hacks blog post walks you through most of the process. For reference here's the assembled source code from the blog post:

// from an input element
var filesToUpload = input.files;
var file = filesToUpload[0];

var img = document.createElement("img");
var reader = new FileReader();  
reader.onload = function(e) {img.src = e.target.result}
reader.readAsDataURL(file);

var ctx = canvas.getContext("2d");
ctx.drawImage(img, 0, 0);

var MAX_WIDTH = 800;
var MAX_HEIGHT = 600;
var width = img.width;
var height = img.height;

if (width > height) {
  if (width > MAX_WIDTH) {
    height *= MAX_WIDTH / width;
    width = MAX_WIDTH;
  }
} else {
  if (height > MAX_HEIGHT) {
    width *= MAX_HEIGHT / height;
    height = MAX_HEIGHT;
  }
}
canvas.width = width;
canvas.height = height;
var ctx = canvas.getContext("2d");
ctx.drawImage(img, 0, 0, width, height);

var dataurl = canvas.toDataURL("image/png");

//Post dataurl to the server with AJAX
share|improve this answer
1  
Why thank you good sir. I will have a play tonight... With the file api that is. I got the drag and drop upload to work and I realised this would also be a really nice feature to include. Yippee. – James T Apr 26 '12 at 13:20
Thank you sir! These two lines are not necessary in my opinion: var ctx = canvas.getContext("2d"); ctx.drawImage(img, 0, 0); ---- as you already get the context and drawImage at the end... – Qlimax Aug 22 '12 at 12:28
Don't we need to use this mycanvas.toDataURL("image/jpeg", 0.5) to make sure the quality is brought in order to decrease the file size. I came across this comment on the mozilla blog post and saw the bug resolution here bugzilla.mozilla.org/show_bug.cgi?id=564388 – SHOUBHIK BOSE Jan 15 at 10:58
@SHOUBHIKBOSE I don't know, that depends on whether your app requires you to sacrifice quality for file size. – robertc Jan 15 at 13:20
Thanks @robertc Okay I'm a bit confused . I need to bring down the file size not the just the dimensions. So what should I be doing then? :) – SHOUBHIK BOSE Jan 15 at 14:14
show 2 more comments

If you don't want to reinvent the wheel you may try plupload.com

share|improve this answer
Thanks. Have you tried this? Looks great though! – SHOUBHIK BOSE Jan 15 at 10:48

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.