Last active
January 19, 2017 17:54
-
-
Save bleroy/b9e956ba505194b6071e5afed928ba0a to your computer and use it in GitHub Desktop.
This file contains 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
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