private void button_Click(object sender, EventArgs e)
{
Image bitmap = Bitmap.FromFile(@"C:\Users\Madhu\Pictures\vijay.bmp");
Clipboard.SetImage(bitmap);
Image img = Clipboard.GetImage();
img.Save(@"C:\Users\Madhu\Pictures\NewImage.jpg");
}
Copy the image to clipboard and paste from clipboard to a new location.