Is there a way to load an image larger or smaller without cropping? I don't want it to look smaller or larger. I want it to actually be smaller or larger. I tried using these parameters for a new Image() object, are there any more?
_img = new Image(50, 50); //These parameters will crop it
_img.addEventListener('load',onImage,false);
_img.width = 50;//This will crop it.
_img.style.width = "50px";//This doesn't change the original width to read `50`.
console.log(_img.width);