-
-
Save jerkovicl/e5860d7538f333e40a20b136ef8c32d7 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