How to crop a part of a image [closed]
In c# how can I crop a part开发者_如何转开发 of a picture like they do in minecraft
thanks in advance
Use one of the Graphics.DrawImage
overloads that allows you to select just part of the source, for example http://msdn.microsoft.com/en-us/library/ms142040.aspx
Draws the specified portion of the specified Image at the specified location and with the specified size.
精彩评论