Skip to content

Instantly share code, notes, and snippets.

@bleroy
Last active January 19, 2017 17:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bleroy/b9e956ba505194b6071e5afed928ba0a to your computer and use it in GitHub Desktop.
Save bleroy/b9e956ba505194b6071e5afed928ba0a to your computer and use it in GitHub Desktop.
using ImageMagick;
const int size = 150;
const int quality = 75;
using (var image = new MagickImage(inputPath))
{
image.Resize(size, size);
image.Strip();
image.Quality = quality;
image.Write(outputPath);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment