Class: ZPNG::BMP::BmpPseudoChunk
Constant Summary
Constants inherited from Chunk
Chunk::KNOWN_TYPES, Chunk::VALID_SIZE_RANGE
Instance Attribute Summary
Attributes inherited from Chunk
#crc, #data, #idx, #offset, #size, #type
Instance Method Summary collapse
-
#initialize(struct) ⇒ BmpPseudoChunk
constructor
A new instance of BmpPseudoChunk.
- #inspect(*args) ⇒ Object
- #method_missing(mname, *args) ⇒ Object
Methods inherited from Chunk
#check, #crc_ok?, #export, #export_data, #fix_crc!, from_stream, #valid?
Methods included from DeepCopyable
Constructor Details
#initialize(struct) ⇒ BmpPseudoChunk
Returns a new instance of BmpPseudoChunk.
75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 |
# File 'lib/zpng/bmp/reader.rb', line 75 def initialize struct @struct = struct type = if struct.respond_to?(:type) struct.type else struct.class.to_s.split('::').last end super( #:size => struct.class.const_get('SIZE'), :type => type, :data => struct.pack, :crc => :no_crc # for CLI ) end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(mname, *args) ⇒ Object
94 95 96 97 98 99 100 |
# File 'lib/zpng/bmp/reader.rb', line 94 def method_missing mname, *args if @struct.respond_to?(mname) @struct.send(mname,*args) else super end end |
Instance Method Details
#inspect(*args) ⇒ Object
91 92 93 |
# File 'lib/zpng/bmp/reader.rb', line 91 def inspect *args @struct.inspect end |