Skip to content

Instantly share code, notes, and snippets.

@patrick91
Created July 25, 2013 07:59
Show Gist options
  • Save patrick91/6077698 to your computer and use it in GitHub Desktop.
Save patrick91/6077698 to your computer and use it in GitHub Desktop.
function scaleImage($img, w, h, targetWidth, targetHeigth) {
var ratio = targetWidth / w;
var height = h * ratio;
var width = w * ratio;
if (targetHeigth && height > targetHeigth) {
ratio = targetHeigth / h;
height = targetHeigth;
width = w * ratio;
}
height = Math.floor(height);
width = Math.floor(width);
if ($img) {
$img.css({
height: height,
width: width
});
}
return {width: width, height: height};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment