Show / Hide Table of Contents

Class File.ImageMediaMetadataData

Additional metadata about image media, if available.

Inheritance
System.Object
File.ImageMediaMetadataData
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Drive.v3.Data
Assembly: Google.Apis.Drive.v3.dll
Syntax
public class ImageMediaMetadataData

Properties

Aperture

The aperture used to create the photo (f-number).

Declaration
[JsonProperty("aperture")]
public virtual float? Aperture { get; set; }
Property Value
Type Description
System.Nullable<System.Single>

CameraMake

The make of the camera used to create the photo.

Declaration
[JsonProperty("cameraMake")]
public virtual string CameraMake { get; set; }
Property Value
Type Description
System.String

CameraModel

The model of the camera used to create the photo.

Declaration
[JsonProperty("cameraModel")]
public virtual string CameraModel { get; set; }
Property Value
Type Description
System.String

ColorSpace

The color space of the photo.

Declaration
[JsonProperty("colorSpace")]
public virtual string ColorSpace { get; set; }
Property Value
Type Description
System.String

ExposureBias

The exposure bias of the photo (APEX value).

Declaration
[JsonProperty("exposureBias")]
public virtual float? ExposureBias { get; set; }
Property Value
Type Description
System.Nullable<System.Single>

ExposureMode

The exposure mode used to create the photo.

Declaration
[JsonProperty("exposureMode")]
public virtual string ExposureMode { get; set; }
Property Value
Type Description
System.String

ExposureTime

The length of the exposure, in seconds.

Declaration
[JsonProperty("exposureTime")]
public virtual float? ExposureTime { get; set; }
Property Value
Type Description
System.Nullable<System.Single>

FlashUsed

Whether a flash was used to create the photo.

Declaration
[JsonProperty("flashUsed")]
public virtual bool? FlashUsed { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

FocalLength

The focal length used to create the photo, in millimeters.

Declaration
[JsonProperty("focalLength")]
public virtual float? FocalLength { get; set; }
Property Value
Type Description
System.Nullable<System.Single>

Height

The height of the image in pixels.

Declaration
[JsonProperty("height")]
public virtual int? Height { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

IsoSpeed

The ISO speed used to create the photo.

Declaration
[JsonProperty("isoSpeed")]
public virtual int? IsoSpeed { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Lens

The lens used to create the photo.

Declaration
[JsonProperty("lens")]
public virtual string Lens { get; set; }
Property Value
Type Description
System.String

Location

Geographic location information stored in the image.

Declaration
[JsonProperty("location")]
public virtual File.ImageMediaMetadataData.LocationData Location { get; set; }
Property Value
Type Description
File.ImageMediaMetadataData.LocationData

MaxApertureValue

The smallest f-number of the lens at the focal length used to create the photo (APEX value).

Declaration
[JsonProperty("maxApertureValue")]
public virtual float? MaxApertureValue { get; set; }
Property Value
Type Description
System.Nullable<System.Single>

MeteringMode

The metering mode used to create the photo.

Declaration
[JsonProperty("meteringMode")]
public virtual string MeteringMode { get; set; }
Property Value
Type Description
System.String

Rotation

The rotation in clockwise degrees from the image's original orientation.

Declaration
[JsonProperty("rotation")]
public virtual int? Rotation { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Sensor

The type of sensor used to create the photo.

Declaration
[JsonProperty("sensor")]
public virtual string Sensor { get; set; }
Property Value
Type Description
System.String

SubjectDistance

The distance to the subject of the photo, in meters.

Declaration
[JsonProperty("subjectDistance")]
public virtual int? SubjectDistance { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Time

The date and time the photo was taken (EXIF DateTime).

Declaration
[JsonProperty("time")]
public virtual string Time { get; set; }
Property Value
Type Description
System.String

WhiteBalance

The white balance mode used to create the photo.

Declaration
[JsonProperty("whiteBalance")]
public virtual string WhiteBalance { get; set; }
Property Value
Type Description
System.String

Width

The width of the image in pixels.

Declaration
[JsonProperty("width")]
public virtual int? Width { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>
Back to top