I would like to display an image downloaded from a specific url using jquery ajax. How can i achieve this? (without setting the .src image) I also need to rotate and scale this image.
You can create <canvas>and fill it with an image. When loading the image, you can rotate, scale, draw, etc.
<canvas>
Here is a good tutorial that does exactly what you need.
To run this run in IE, I suggest using ExplorerCanvas .
, hide show src.
hide
show
src
$('<img>').hide().attr('src', 'img_url').onload(function() {$(this).show()});
, Pixastic, .