2015-07-01 71 views

回答

0

這就是所謂的Exif數據。 System.Drawing.Image.PropertyItems可以讀取這些數據,例如:

// Create an Image object. 
Image image = new Bitmap(@"c:\FakePhoto.jpg"); 

// Get the PropertyItems property from image. 
PropertyItem[] propItems = image.PropertyItems; 

MSDN中this article有更多的細節。

0

System.Drawing具有原始元數據支持。我們一直在努力爲去年獲得MetadataExtractor移植到.NET,結果可以在這裏找到:

https://github.com/drewnoakes/metadata-extractor-dotnet

和的NuGet

Install-Package MetadataExtractor -Pre

元數據的範圍解析是相當大的,並不適合在ImageResizer內。

相關問題