What i need to do is just crop following image
and display only the mail item instead of with that mail picture .
I have used the following code but it just crop the right side not left .
Note: Picture is just an example get it from google image
Bitmap croppedBitmap = new Bitmap("E:/my234.png");
try
{
croppedBitmap = croppedBitmap.Clone(new Rectangle(0,0,202, 17), System.Drawing.Imaging.PixelFormat.DontCare);
pictureBox1.Image = croppedBitmap;
}
catch(Exception ex)
{ string se = ex.ToString(); }