Class: Google::Apis::DriveV2::File::ImageMediaMetadata

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/drive_v2/classes.rb,
generated/google/apis/drive_v2/representations.rb,
generated/google/apis/drive_v2/representations.rb

Overview

Metadata about image media. This will only be present for image types, and its contents will depend on what can be parsed from the image content.

Defined Under Namespace

Classes: Location

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ImageMediaMetadata

Returns a new instance of ImageMediaMetadata



2078
2079
2080
# File 'generated/google/apis/drive_v2/classes.rb', line 2078

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#apertureFloat

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

Returns:

  • (Float)


1974
1975
1976
# File 'generated/google/apis/drive_v2/classes.rb', line 1974

def aperture
  @aperture
end

#camera_makeString

The make of the camera used to create the photo. Corresponds to the JSON property cameraMake

Returns:

  • (String)


1979
1980
1981
# File 'generated/google/apis/drive_v2/classes.rb', line 1979

def camera_make
  @camera_make
end

#camera_modelString

The model of the camera used to create the photo. Corresponds to the JSON property cameraModel

Returns:

  • (String)


1984
1985
1986
# File 'generated/google/apis/drive_v2/classes.rb', line 1984

def camera_model
  @camera_model
end

#color_spaceString

The color space of the photo. Corresponds to the JSON property colorSpace

Returns:

  • (String)


1989
1990
1991
# File 'generated/google/apis/drive_v2/classes.rb', line 1989

def color_space
  @color_space
end

#dateString

The date and time the photo was taken (EXIF format timestamp). Corresponds to the JSON property date

Returns:

  • (String)


1994
1995
1996
# File 'generated/google/apis/drive_v2/classes.rb', line 1994

def date
  @date
end

#exposure_biasFloat

The exposure bias of the photo (APEX value). Corresponds to the JSON property exposureBias

Returns:

  • (Float)


1999
2000
2001
# File 'generated/google/apis/drive_v2/classes.rb', line 1999

def exposure_bias
  @exposure_bias
end

#exposure_modeString

The exposure mode used to create the photo. Corresponds to the JSON property exposureMode

Returns:

  • (String)


2004
2005
2006
# File 'generated/google/apis/drive_v2/classes.rb', line 2004

def exposure_mode
  @exposure_mode
end

#exposure_timeFloat

The length of the exposure, in seconds. Corresponds to the JSON property exposureTime

Returns:

  • (Float)


2009
2010
2011
# File 'generated/google/apis/drive_v2/classes.rb', line 2009

def exposure_time
  @exposure_time
end

#flash_usedBoolean Also known as: flash_used?

Whether a flash was used to create the photo. Corresponds to the JSON property flashUsed

Returns:

  • (Boolean)


2014
2015
2016
# File 'generated/google/apis/drive_v2/classes.rb', line 2014

def flash_used
  @flash_used
end

#focal_lengthFloat

The focal length used to create the photo, in millimeters. Corresponds to the JSON property focalLength

Returns:

  • (Float)


2020
2021
2022
# File 'generated/google/apis/drive_v2/classes.rb', line 2020

def focal_length
  @focal_length
end

#heightFixnum

The height of the image in pixels. Corresponds to the JSON property height

Returns:

  • (Fixnum)


2025
2026
2027
# File 'generated/google/apis/drive_v2/classes.rb', line 2025

def height
  @height
end

#iso_speedFixnum

The ISO speed used to create the photo. Corresponds to the JSON property isoSpeed

Returns:

  • (Fixnum)


2030
2031
2032
# File 'generated/google/apis/drive_v2/classes.rb', line 2030

def iso_speed
  @iso_speed
end

#lensString

The lens used to create the photo. Corresponds to the JSON property lens

Returns:

  • (String)


2035
2036
2037
# File 'generated/google/apis/drive_v2/classes.rb', line 2035

def lens
  @lens
end

#locationGoogle::Apis::DriveV2::File::ImageMediaMetadata::Location

Geographic location information stored in the image. Corresponds to the JSON property location



2040
2041
2042
# File 'generated/google/apis/drive_v2/classes.rb', line 2040

def location
  @location
end

#max_aperture_valueFloat

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

Returns:

  • (Float)


2046
2047
2048
# File 'generated/google/apis/drive_v2/classes.rb', line 2046

def max_aperture_value
  @max_aperture_value
end

#metering_modeString

The metering mode used to create the photo. Corresponds to the JSON property meteringMode

Returns:

  • (String)


2051
2052
2053
# File 'generated/google/apis/drive_v2/classes.rb', line 2051

def metering_mode
  @metering_mode
end

#rotationFixnum

The rotation in clockwise degrees from the image's original orientation. Corresponds to the JSON property rotation

Returns:

  • (Fixnum)


2056
2057
2058
# File 'generated/google/apis/drive_v2/classes.rb', line 2056

def rotation
  @rotation
end

#sensorString

The type of sensor used to create the photo. Corresponds to the JSON property sensor

Returns:

  • (String)


2061
2062
2063
# File 'generated/google/apis/drive_v2/classes.rb', line 2061

def sensor
  @sensor
end

#subject_distanceFixnum

The distance to the subject of the photo, in meters. Corresponds to the JSON property subjectDistance

Returns:

  • (Fixnum)


2066
2067
2068
# File 'generated/google/apis/drive_v2/classes.rb', line 2066

def subject_distance
  @subject_distance
end

#white_balanceString

The white balance mode used to create the photo. Corresponds to the JSON property whiteBalance

Returns:

  • (String)


2071
2072
2073
# File 'generated/google/apis/drive_v2/classes.rb', line 2071

def white_balance
  @white_balance
end

#widthFixnum

The width of the image in pixels. Corresponds to the JSON property width

Returns:

  • (Fixnum)


2076
2077
2078
# File 'generated/google/apis/drive_v2/classes.rb', line 2076

def width
  @width
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
# File 'generated/google/apis/drive_v2/classes.rb', line 2083

def update!(**args)
  @aperture = args[:aperture] if args.key?(:aperture)
  @camera_make = args[:camera_make] if args.key?(:camera_make)
  @camera_model = args[:camera_model] if args.key?(:camera_model)
  @color_space = args[:color_space] if args.key?(:color_space)
  @date = args[:date] if args.key?(:date)
  @exposure_bias = args[:exposure_bias] if args.key?(:exposure_bias)
  @exposure_mode = args[:exposure_mode] if args.key?(:exposure_mode)
  @exposure_time = args[:exposure_time] if args.key?(:exposure_time)
  @flash_used = args[:flash_used] if args.key?(:flash_used)
  @focal_length = args[:focal_length] if args.key?(:focal_length)
  @height = args[:height] if args.key?(:height)
  @iso_speed = args[:iso_speed] if args.key?(:iso_speed)
  @lens = args[:lens] if args.key?(:lens)
  @location = args[:location] if args.key?(:location)
  @max_aperture_value = args[:max_aperture_value] if args.key?(:max_aperture_value)
  @metering_mode = args[:metering_mode] if args.key?(:metering_mode)
  @rotation = args[:rotation] if args.key?(:rotation)
  @sensor = args[:sensor] if args.key?(:sensor)
  @subject_distance = args[:subject_distance] if args.key?(:subject_distance)
  @white_balance = args[:white_balance] if args.key?(:white_balance)
  @width = args[:width] if args.key?(:width)
end