image resizing with exif data

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top