I\'m working on a service for a company project that handles image processing, and one of the methods is supposed to clean the metadata from an image passed to it.
I
Metadata - Gets or sets the metadata that will be associated with this bitmap during encoding.
The 'Oops, I (not so accidentally) forgot something way: Open the original bitmap file into a System.drawing.Bitmap object. Clone it to a new Bitmap
object. Write the clone's contents to a new file. Like this one-liner:
((System.Drawing.Bitmap)System.Drawing.Image.FromFile(@"C:\file.png").Clone()).Save(@"C:\file-nometa.png");
The direct file manipulation way (only for JPEG): Blog post about removing the EXIF area.