Skip to content

Instantly share code, notes, and snippets.

@dongyuwei
Created November 18, 2015 02:55
Show Gist options
  • Select an option

  • Save dongyuwei/8d70b5a10d2a779d4d6b to your computer and use it in GitHub Desktop.

Select an option

Save dongyuwei/8d70b5a10d2a779d4d6b to your computer and use it in GitHub Desktop.
function resizeImage(width, height, maxWidth, maxHeight) {
var ratio = Math.min(maxWidth / width, maxHeight / height);
return { width : width * ratio, height : height * ratio };
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment