T
trant
I currently use the following method to crop an image:
Image img; // my source image
// render image
Bitmap crop = img.Clone(cropArea, img.PixelFormat);
But I wonder if this is inefficient or problematic.
Is there a better way? Something with better performance?
Image img; // my source image
// render image
Bitmap crop = img.Clone(cropArea, img.PixelFormat);
But I wonder if this is inefficient or problematic.
Is there a better way? Something with better performance?