Created
February 7, 2017 18:53
-
-
Save bleroy/c110d1231c7e47cafd918113ed5e0fc6 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
[Benchmark(Description = "ImageSharp Resize")] | |
public ImageSharpSize ResizeImageSharp() | |
{ | |
ImageSharpImage image = new ImageSharpImage(Width, Height); | |
image.Resize(ResizedWidth, ResizedHeight); | |
return new ImageSharpSize(ResizedWidth, ResizedHeight); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment