Skip to content

Instantly share code, notes, and snippets.

@mxmissile
Created June 4, 2014 16:14
Show Gist options
  • Save mxmissile/d173d0bc09ee0ce1353e to your computer and use it in GitHub Desktop.
Save mxmissile/d173d0bc09ee0ce1353e to your computer and use it in GitHub Desktop.
using (var imageFactory = new ImageFactory())
{
var layer = new ResizeLayer(new Size(800, 500), null, ResizeMode.Stretch);
imageFactory.Load(ms)
.Resize(layer)
.Format(ImageFormat.Jpeg)
.Quality(90)
.Save(path);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment