I'm trying to crop an image:
Bitmap bmp = (Bitmap)pictureBox1.Image;
Bitmap cBmp = bmp.Clone(croppedAreaRectangle, bmp.PixelFormat);
pictureBox1.Image = cBmp;
bmp.Dispose();
It's partly working, but the image result is smaller, and from a different area out side the selected cropped area.
So what's wrong?