image resizing with exif data

  • Thread starter Thread starter JimD
  • Start date Start date
J

JimD

Is there any way to preserve the exif data when resizing an image? Most
of the examples I have found are pretty simple like:

Bitmap orig = new Bitmap("DSCN0015.JPG");
Bitmap result = new System.Drawing.Bitmap(orig, 800, 600);
result.Save("new.jpg");

Or just using the GetThumbnailImage() method.

However both of these blow away the original exif data.

Does anyone have an example or know of a good (preferably open source)
C# image class/library that can handle this?

Thanks,

JimD
 
Back
Top