Skip to content

Instantly share code, notes, and snippets.

@bleroy
Created February 7, 2017 18:53
Show Gist options
  • Save bleroy/c110d1231c7e47cafd918113ed5e0fc6 to your computer and use it in GitHub Desktop.
Save bleroy/c110d1231c7e47cafd918113ed5e0fc6 to your computer and use it in GitHub Desktop.
[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