Bitmap img = new Bitmap("C:\\temp\\images\\file.jpg");
img.PixelFormat is Format24bppRgb
when I am doing deep copy
Bitmap img2 = new Bitmap(img);
img.PixelFormat is changed to Format32bppArgb
why does it change pixel format? and how to make deep copy for the object if it doesn't make deep copy?