Handbook
Glossary
parse-ihdr-chunk ( loading-png -- loading-png )
Vocabulary
images
.
png
Inputs
loading-png
an
object
Outputs
loading-png
an
object
Definition
USING:
accessors
combinators
endian
kernel
sequences
;
IN:
images.png
:
parse-ihdr-chunk
( loading-png -- loading-png )
dup
"IHDR"
find-chunk
data>>
{
[
[
0 4
]
dip
subseq
be>
>>width
]
[
[
4 8
]
dip
subseq
be>
>>height
]
[
[
8
]
dip
nth
>>bit-depth
]
[
[
9
]
dip
nth
>>color-type
]
[
[
10
]
dip
nth
>>compression-method
]
[
[
11
]
dip
nth
>>filter-method
]
[
[
12
]
dip
nth
>>interlace-method
]
}
cleave
;