class MediaInfo::ImageStream

Constants

TYPE

Attributes

bit_depth[R]
bit_depth_string[R]
chroma_subsampling[R]
color_space[R]
compression_mode[R]
compression_mode_string[R]
height[R]
height_string[R]
resolution[R]
resolution_string[R]
width[R]
width_string[R]

Private Instance Methods

bit_depth=(value) click to toggle source
# File lib/media_info/streams/image.rb, line 30
def bit_depth=(value)
  @bit_depth = value.to_i
end
height=(value) click to toggle source
# File lib/media_info/streams/image.rb, line 26
def height=(value)
  @height = value.to_i
end
resolution=(value) click to toggle source
# File lib/media_info/streams/image.rb, line 34
def resolution=(value)
  @resolution = value.to_i
end
width=(value) click to toggle source
# File lib/media_info/streams/image.rb, line 22
def width=(value)
  @width = value.to_i
end