Getting image metadata in .NET without regards to metadata format - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T02:55:32Zhttp://stackoverflow.com/feeds/question/193293http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/193293/getting-image-metadata-in-net-without-regards-to-metadata-format1Getting image metadata in .NET without regards to metadata formatChris Charabaruk2008-10-10T23:03:10Z2008-10-10T23:26:43Z
<p>Given a filename, I need to be able to access certain metadata in an image for a (closed source) project I'm currently developing, without regard to how the metadata is stored (that is, Exif, IPTC, or XMP). In particular, I want to access geotagging data.</p>
<p>Is there a way of doing this <b>without</b> requiring any third party assemblies or libraries (i.e. is it doable with stock Microsoft .NET) and how would it be done? Or am I stuck with a lot of P/Invoking of <a href="http://msdn.microsoft.com/en-us/library/ms735422(VS.85).aspx" rel="nofollow">WIC</a>?</p>
http://stackoverflow.com/questions/193293/getting-image-metadata-in-net-without-regards-to-metadata-format/193316#1933161Answer by Dror Helper for Getting image metadata in .NET without regards to metadata formatDror Helper2008-10-10T23:16:11Z2008-10-10T23:16:11Z<p>Check the <a href="http://freeimage.sourceforge.net/" rel="nofollow">FreeImage project</a> - a C++ image loading and processing that has .NET wrapper. perhaps it can do that </p>