I would like to know if it is technically possible to resize an image at a client-side with javascript (really resize, not just change width and height). I know it's possible to do it in flash but I would like to avoid it if possible. Is there any open source algorithm somewhere on the web?
|
|
The answer to this is yes - in HTML 5 you can resize images client-side using the canvas element. You can also take the new data and send it to a server. See this tutorial: http://hacks.mozilla.org/2011/01/how-to-develop-a-html5-image-uploader/ |
|||
|
|
|
Not sure why you want to do this... but if you where resizing before uploading I just found out this http://www.plupload.com/ it does all the magic for you in any imaginable method. Unfortunatelly HTML5 resize only is suported with Mozilla borwser, but you can redirect other browsers to flash and silverlight. I just tried it and worked with my android!. I was using http://swfupload.org/ in flash, it does the job very well, but the resize size is very small. (cannot remember the limit) and does not go back to html4 when flash is not available. |
|||
|
|
|
HTML5: Image resizing is only possible on Firefox 3.5+ and only at a fixed quality. WebKit/Opera doesn't support direct data access to the selected files. The rest it handles with Flash. |
|||
|
|
|
Perhaps with the canvas tag (though it's not portable). There's a blog about how to rotate an image with canvas here, I suppose if you can rotate it, you can resize it. Maybe it can be a starting point. See there also. |
|||
|
|
|
You would need to perform the resize at the server side, unfortunately. If it were possible through JavaScript (which I don't think it is), you would almost certainly have cross-compatibility issues. |
|||
|
|
|
I haven't seen that javascript can resize images I googled a little and found this topic http://stackoverflow.com/questions/973591/resizing-images-on-client-side Hmm... read more on the thread, and it seems to be flash solution. |
|||
|
|
|
It is possible to do using the HTML5 canvas tag. As others have mentioned, this only works on standards compliant browsers. There may be some other way to resize an image using IE, but that wouldn't be open source. If you're interested in the canvas solution, let me know, and I'll show you. |
|||||
|
|
It it will be possible with html5. For now, you can use Silverlight to do it. Here is a great starting point. |
|||
|
|