i have 16 bit depth image after rotate image properties are changed like:- image size increase or decrease and bit depth 16 bit to 8 bit decreased.
expected rotated image properties like original image properties(Like:-both images size and bit depth should same)
check following code
Image img = Image.FromFile(sourceimagepath);
img.RotateFlip(RotateFlipType.Rotate90FlipNone);
img.Save(rotatedimahepath);
img.Dispose();
here my source images are .TIFF images and image bit depth is 16 bit.
thanks.