Created
November 18, 2015 02:55
-
-
Save dongyuwei/8d70b5a10d2a779d4d6b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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