Class: DynamicImage::Metadata

Inherits:
Object
  • Object
show all
Defined in:
lib/dynamic_image/metadata.rb

Overview

DynamicImage Metadata

Parses metadata from an image. Accepts a Pathname, IO, or binary string.

Instance Method Summary collapse

Constructor Details

#initialize(data) ⇒ Metadata

Returns a new instance of Metadata.



8
9
10
# File 'lib/dynamic_image/metadata.rb', line 8

def initialize(data)
  @data = data
end

Instance Method Details

#colorspaceObject

Returns the color space of the image as a string. The result will be one of the following: “rgb”, “cmyk”, “gray”.



14
15
16
17
18
19
20
21
22
23
24
25
# File 'lib/dynamic_image/metadata.rb', line 14

def colorspace
  return unless valid?

  case [:colorspace].to_s
  when /rgb/i
    "rgb"
  when /cmyk/i
    "cmyk"
  when /gray/i, /b-w/i
    "gray"
  end
end

#content_typeObject

Returns the content type of the image.



28
29
30
# File 'lib/dynamic_image/metadata.rb', line 28

def content_type
  reader.format.content_type if valid?
end

#dimensionsObject

Returns the dimensions of the image as a vector.



37
38
39
# File 'lib/dynamic_image/metadata.rb', line 37

def dimensions
  Vector2d.new([:width], [:height]) if valid?
end

#formatObject



32
33
34
# File 'lib/dynamic_image/metadata.rb', line 32

def format
  reader.format.name if valid?
end

#heightObject

Returns the height of the image.



47
48
49
# File 'lib/dynamic_image/metadata.rb', line 47

def height
  [:height] if valid?
end

#valid?Boolean

Returns true if the image is valid.

Returns:

  • (Boolean)


52
53
54
# File 'lib/dynamic_image/metadata.rb', line 52

def valid?
  @data && reader.valid_header? &&  != :invalid
end

#widthObject

Returns the width of the image.



42
43
44
# File 'lib/dynamic_image/metadata.rb', line 42

def width
  [:width] if valid?
end