How to copy a part of a source bitmap?

  • Thread starter Thread starter ΢ÈíÐÂÎÅ×é
  • Start date Start date
Î

΢ÈíÐÂÎÅ×é

i want to copy a part of source bitmap i need into a new bitmap.of course
the new bitmap has a smaller new size.

how to do this ?
 
Hi,
i want to copy a part of source bitmap i need into a new bitmap.of course
the new bitmap has a smaller new size.

how to do this ?

You can use the Bitmap's method:
Bitmap Clone(Rectangle, PixelFormat);

Regards

Marcin
 
Back
Top