publicstatic ImageSize GetImageSize(string img) { try { using (System.Drawing.Image image = System.Drawing.Image.FromFile(img)) { // Check for EXIF orientation property if (Array.Exists(image.PropertyIdList, id => id == 274)) // 274 is the EXIF orientation tag { var orientationProperty = image.GetPropertyItem(274); int orientationValue = orientationProperty.Value[0];
// Adjust width and height based on orientation if (orientationValue == 6 || orientationValue == 8) { // Swap width and height for 90 or 270 degree rotation returnnew ImageSize(image.Height, image.Width); } }