Skip to content

Instantly share code, notes, and snippets.

@mesutd0nmez
Created October 3, 2017 15:47
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 mesutd0nmez/191f3afce98722ca6ab2e03d0e84a6aa to your computer and use it in GitHub Desktop.
Save mesutd0nmez/191f3afce98722ca6ab2e03d0e84a6aa to your computer and use it in GitHub Desktop.
Thumpnail olarak resim kaydetme kodu.
Image image = Image.FromFile(fileName);
Image thumb = image.GetThumbnailImage(120, 120, ()=>false, IntPtr.Zero);
thumb.Save(Path.ChangeExtension(fileName, "thumb"));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment