ExifData
JpegImage.ExifData property
Получить или установить контейнер данных exif
public JpegExifData ExifData { get; set; }
Примеры
В следующем примере показано, как извлечь теги EXIF из изображения JPEG.
[C#]
string dir = "c:\\temp\\";
using (Aspose.Imaging.FileFormats.Jpeg.JpegImage image = (Aspose.Imaging.FileFormats.Jpeg.JpegImage)Image.Load(dir + "original.jpg"))
{
Aspose.Imaging.Exif.ExifData exifData = image.ExifData;
System.Console.WriteLine("The general EXIF data");
System.Console.WriteLine("------------------------------------------");
if (exifData != null)
{
System.Console.WriteLine("The EXIF version: {0}", exifData.ExifVersion);
System.Console.WriteLine("The camera serial number: {0}", exifData.BodySerialNumber);
System.Console.WriteLine("The color space: {0}", exifData.ColorSpace);
System.Console.WriteLine("The brightness: {0}", exifData.BrightnessValue);
System.Console.WriteLine("The contrast: {0}", exifData.Contrast);
System.Console.WriteLine("The gamma: {0}", exifData.Gamma);
System.Console.WriteLine("The sharpness: {0}", exifData.Sharpness);
System.Console.WriteLine("The aperture: {0}", exifData.ApertureValue);
System.Console.WriteLine("The exposure mode: {0}", exifData.ExposureMode);
System.Console.WriteLine("The exposure bias: {0}", exifData.ExposureBiasValue);
System.Console.WriteLine("The exposure time: {0}", exifData.ExposureTime);
System.Console.WriteLine("The focal length: {0}", exifData.FocalLength);
System.Console.WriteLine("The focal plane resolution unit: {0}", exifData.FocalPlaneResolutionUnit);
System.Console.WriteLine("The lens model: {0}", exifData.LensModel);
System.Console.WriteLine("The shutter speed: {0}", exifData.ShutterSpeedValue);
}
System.Console.WriteLine("The JPEG EXIF data");
System.Console.WriteLine("------------------------------------------");
Aspose.Imaging.Exif.JpegExifData jpegExifData = image.ExifData as Aspose.Imaging.Exif.JpegExifData;
if (jpegExifData != null)
{
System.Console.WriteLine("The camera manufacturer: {0}", jpegExifData.Make);
System.Console.WriteLine("The camera model: {0}", jpegExifData.Model);
System.Console.WriteLine("The photometric interpretation: {0}", jpegExifData.PhotometricInterpretation);
System.Console.WriteLine("The artist: {0}", jpegExifData.Artist);
System.Console.WriteLine("The copyright: {0}", jpegExifData.Copyright);
System.Console.WriteLine("The image description: {0}", jpegExifData.ImageDescription);
System.Console.WriteLine("The orientation: {0}", jpegExifData.Orientation);
System.Console.WriteLine("The software: {0}", jpegExifData.Software);
}
}
//Вывод выглядит так:
//Общие данные EXIF
//--------------------------------------------------------------------------
//Версия EXIF: System.Byte[]
//Серийный номер камеры: 7100536
//Цветовое пространство: SRgb
//Яркость:
// Контраст: нормальный
//Гамма:
//Резкость: 0
// Диафрагма: 4,64 (4643856/1000000)
//Режим экспозиции: Ручной
// Смещение экспозиции: 0,67 (4 / 6)
//Время экспозиции: 0,01 (1/160)
//Фокусное расстояние: 145,00 (1450/10)
//Единица разрешения фокальной плоскости: см
//Модель объектива: 70,0 - 200,0 мм f/ 4,0
// Скорость затвора: 7,32 (7321928/1000000)
//данные JPEG EXIF
//--------------------------------------------------------------------------
//Производитель камеры: NIKON CORPORATION
//Модель камеры: NIKON D5
//Фотометрическая интерпретация: 0
//Художник:
//Авторское право:
//Описание изображения:
// Ориентация: TopLeft
// Программное обеспечение: Adobe Photoshop Camera Raw 9.9 (Macintosh)
Смотрите также
- class JpegExifData
- class JpegImage
- пространство имен Aspose.Imaging.FileFormats.Jpeg
- сборка Aspose.Imaging