3

I have a JPEG image that I want to set an Exif header to (particularly, Author).

In .NET, I can do this relatively easy using GetPropertyItem and SetPropertyItem, but in order for that change to be persisted to the actual .JPG file, I need to Save it, which basically recompresses the image.

Is there any way to do this without recompressing?

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
Daniel Magliola
  • 30,898
  • 61
  • 164
  • 243

1 Answers1

1

I believe exiv2net library (a .NET wrapper on top of exiv2) may be what you're looking for.

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
Pawel Marciniak
  • 2,208
  • 14
  • 17