Class: Rixmap::Format::PNG::Chunk::BaseChunk
- Inherits:
-
Object
- Object
- Rixmap::Format::PNG::Chunk::BaseChunk
- Defined in:
- lib/rixmap/format/png/chunk.rb
Overview
PNGチャンクベースクラス
Direct Known Subclasses
BKGDAncillaryChunk, IDATChunk, IENDChunk, IHDRChunk, PLTEChunk, TRNSAncillaryChunk
Instance Method Summary collapse
-
#copysafe? ⇒ Boolean
コピー安全なチャンクかどうかを返します.
-
#data ⇒ String
チャンクデータを返します.
-
#data=(data) ⇒ Object
チャンクデータを更新します.
-
#initialize(type, data = nil) ⇒ BaseChunk
constructor
チャンクを初期化します.
-
#optional? ⇒ Boolean
補助チャンクかどうかを返します.
-
#pack ⇒ Object
データ取得前の、データ構築処理を行います.
-
#private? ⇒ Boolean
プライベートチャンクかどうかを返します.
-
#standard? ⇒ Boolean
標準チャンクかどうかを返します.
-
#type ⇒ String
チャンクタイプを返します.
-
#unpack ⇒ Object
データ更新後の、内部プロパティ更新処理を行います.
Constructor Details
#initialize(type, data = nil) ⇒ BaseChunk
チャンクを初期化します.
51 52 53 54 55 56 |
# File 'lib/rixmap/format/png/chunk.rb', line 51 def initialize(type, data = nil) @type = type @data = nil self.data = data unless data.nil? end |
Instance Method Details
#copysafe? ⇒ Boolean
コピー安全なチャンクかどうかを返します.
106 107 108 |
# File 'lib/rixmap/format/png/chunk.rb', line 106 def copysafe?() return (@type[3].ord & 0x20) != 0 end |
#data ⇒ String
チャンクデータを返します.
68 69 70 71 |
# File 'lib/rixmap/format/png/chunk.rb', line 68 def data() self.pack() return @data end |
#data=(data) ⇒ Object
チャンクデータを更新します.
76 77 78 79 80 |
# File 'lib/rixmap/format/png/chunk.rb', line 76 def data=(data) @data = data self.unpack() return nil end |
#optional? ⇒ Boolean
補助チャンクかどうかを返します.
85 86 87 |
# File 'lib/rixmap/format/png/chunk.rb', line 85 def optional?() return (@type[0].ord & 0x20) != 0 end |
#pack ⇒ Object
データ取得前の、データ構築処理を行います.
data から呼び出されます
113 114 |
# File 'lib/rixmap/format/png/chunk.rb', line 113 def pack() end |
#private? ⇒ Boolean
プライベートチャンクかどうかを返します.
92 93 94 |
# File 'lib/rixmap/format/png/chunk.rb', line 92 def private?() return (@type[1].ord & 0x20) != 0 end |
#standard? ⇒ Boolean
標準チャンクかどうかを返します.
99 100 101 |
# File 'lib/rixmap/format/png/chunk.rb', line 99 def standard?() return (@type[2].ord & 0x20) == 0 end |
#type ⇒ String
チャンクタイプを返します.
61 62 63 |
# File 'lib/rixmap/format/png/chunk.rb', line 61 def type() return @type end |
#unpack ⇒ Object
データ更新後の、内部プロパティ更新処理を行います.
117 118 |
# File 'lib/rixmap/format/png/chunk.rb', line 117 def unpack() end |