Class: PDF::Inspector::Graphics::Pattern

Inherits:
PDF::Inspector show all
Defined in:
lib/pdf/inspector/graphics.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from PDF::Inspector

analyze, analyze_file, parse

Constructor Details

#initializePattern

Returns a new instance of Pattern.



156
157
158
159
# File 'lib/pdf/inspector/graphics.rb', line 156

def initialize
  super
  @patterns = {}
end

Instance Attribute Details

#patternsObject (readonly)

Returns the value of attribute patterns.



154
155
156
# File 'lib/pdf/inspector/graphics.rb', line 154

def patterns
  @patterns
end

Instance Method Details

#page=(page) ⇒ Object



161
162
163
164
165
# File 'lib/pdf/inspector/graphics.rb', line 161

def page=(page)
  page.patterns.each do |label, stream|
    @patterns[label] = stream
  end
end