Posted on: 5/14/2015 6:22:21 PM | Views : 652

I want to remove the Exif Data from an image but "ExifFile" does not have a using statement library, any ideas how to get this to work?  I think doing this might solve my issue with images being rotated 90 degrees from being uploaded from an apple iphone.
// Extract exif metadata ExifFile file = ExifFile.Read("path_to_my_image"); // Clear metadata file.Properties.Clear(); // Save exif data with the image file.Save("path_to_my_image"); Thanks

Go to the complete details ...