Getting image metadata in .NET without regards to metadata format - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T02:55:32Z http://stackoverflow.com/feeds/question/193293 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/193293/getting-image-metadata-in-net-without-regards-to-metadata-format 1 Getting image metadata in .NET without regards to metadata format Chris Charabaruk 2008-10-10T23:03:10Z 2008-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#193316 1 Answer by Dror Helper for Getting image metadata in .NET without regards to metadata format Dror Helper 2008-10-10T23:16:11Z 2008-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>