14

I am writing a photo gallery/sharing website and want to (1) write EXIF data to the JPEGs stored on server, and (2) strip that EXIF data prior to writing to the output stream for display.

Is anyone aware of a dotNet library -- preferably open source -- that allows the editing (the key here is that I need to write/erase the EXIF data, not just read it) of EXIF data in image files?

raven
  • 18,004
  • 16
  • 81
  • 112
Mike C.
  • 4,917
  • 8
  • 34
  • 38

2 Answers2

13

Check this libraries:

Christian C. Salvadó
  • 807,428
  • 183
  • 922
  • 838
  • 6
    The first four items here only _read_ metadata (as does my [metadata-extractor](https://github.com/drewnoakes/metadata-extractor-dotnet) library). Only the final one in the list allows editing. – Drew Noakes Sep 29 '17 at 08:20
0

If you're searching for a .net Standard compatible library, I highly recommend ImageSharp.

JJP
  • 1,439
  • 17
  • 21