Created
September 18, 2013 00:26
-
-
Save droyad/6602748 to your computer and use it in GitHub Desktop.
Scale image
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
| var size = image.Size; | |
| var aspectRatio = size.Width / size.Height; | |
| var newSize = aspectRatio > 1 | |
| ? new SizeF(maxHeightOrWidth, maxHeightOrWidth / aspectRatio) | |
| : new SizeF(maxHeightOrWidth * aspectRatio, maxHeightOrWidth); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment