I am trying to embed an Image using the below code
var img = new Image(), src = "image.jpg";
img.onload = function () {
if ((img.width + img.height) % 20 != 0) {
return false
};
var paper = Raphael( 10 , 10, img.width, img.height);
var insert = paper.image(src, 10, 10, img.width, img.height);
};
img.src = src;
This is embedding the image with actual dimensions of image in Google Chrome( I have only Chrome except IE). But When I open the same page in IE, it does not embed the image with actual fitting... Please refer images for further info.
