flip loop and case order
This commit is contained in:
parent
0458b4c6e5
commit
fbce3f50db
1 changed files with 55 additions and 31 deletions
|
@ -173,12 +173,11 @@ proc parseImageData(
|
||||||
max(valuesPerPixel div valuesPerByte, 1)
|
max(valuesPerPixel div valuesPerByte, 1)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
case header.colorType:
|
||||||
|
of 0:
|
||||||
var bytePos, bitPos: int
|
var bytePos, bitPos: int
|
||||||
for y in 0 ..< header.height:
|
for y in 0 ..< header.height:
|
||||||
for x in 0 ..< header.width:
|
for x in 0 ..< header.width:
|
||||||
var rgba: array[4, uint8]
|
|
||||||
case header.colorType:
|
|
||||||
of 0:
|
|
||||||
var value = unfiltered[bytePos]
|
var value = unfiltered[bytePos]
|
||||||
case header.bitDepth:
|
case header.bitDepth:
|
||||||
of 1:
|
of 1:
|
||||||
|
@ -201,12 +200,28 @@ proc parseImageData(
|
||||||
if bitPos == 8:
|
if bitPos == 8:
|
||||||
inc bytePos
|
inc bytePos
|
||||||
bitPos = 0
|
bitPos = 0
|
||||||
rgba = [value, value, value, 255]
|
|
||||||
|
result[x + y * header.width] = ColorRGBA(
|
||||||
|
r: value, g: value, b: value, a: 255
|
||||||
|
)
|
||||||
|
|
||||||
|
# If we move to a new row, skip to the next full byte
|
||||||
|
if bitPos > 0:
|
||||||
|
inc bytePos
|
||||||
|
bitPos = 0
|
||||||
of 2:
|
of 2:
|
||||||
|
var bytePos: int
|
||||||
|
for y in 0 ..< header.height:
|
||||||
|
for x in 0 ..< header.width:
|
||||||
let rgb = cast[ptr array[3, uint8]](unfiltered[bytePos].unsafeAddr)[]
|
let rgb = cast[ptr array[3, uint8]](unfiltered[bytePos].unsafeAddr)[]
|
||||||
rgba = [rgb[0], rgb[1], rgb[2], 255]
|
result[x + y * header.width] = ColorRGBA(
|
||||||
inc(bytePos, 3)
|
r: rgb[0], g: rgb[1], b: rgb[2], a: 255
|
||||||
|
)
|
||||||
|
bytePos += 3
|
||||||
of 3:
|
of 3:
|
||||||
|
var bytePos, bitPos: int
|
||||||
|
for y in 0 ..< header.height:
|
||||||
|
for x in 0 ..< header.width:
|
||||||
var value = unfiltered[bytePos]
|
var value = unfiltered[bytePos]
|
||||||
case header.bitDepth:
|
case header.bitDepth:
|
||||||
of 1:
|
of 1:
|
||||||
|
@ -228,28 +243,37 @@ proc parseImageData(
|
||||||
bitPos = 0
|
bitPos = 0
|
||||||
if value.int >= palette.len:
|
if value.int >= palette.len:
|
||||||
failInvalid()
|
failInvalid()
|
||||||
let rgb = palette[value]
|
|
||||||
rgba = [rgb[0], rgb[1], rgb[2], 255]
|
|
||||||
of 4:
|
|
||||||
rgba = [
|
|
||||||
unfiltered[bytePos],
|
|
||||||
unfiltered[bytePos],
|
|
||||||
unfiltered[bytePos],
|
|
||||||
unfiltered[bytePos + 1]
|
|
||||||
]
|
|
||||||
inc(bytePos, 2)
|
|
||||||
of 6:
|
|
||||||
rgba = cast[array[4, uint8]](unfiltered.readUint32(bytePos))
|
|
||||||
inc(bytePos, 4)
|
|
||||||
else:
|
|
||||||
discard # Not possible, parseHeader validates
|
|
||||||
|
|
||||||
result[x + y * header.width] = cast[ColorRGBA](rgba)
|
let rgb = palette[value]
|
||||||
|
result[x + y * header.width] = ColorRGBA(
|
||||||
|
r: rgb[0], g: rgb[1], b: rgb[2], a: 255
|
||||||
|
)
|
||||||
|
|
||||||
# If we move to a new row, skip to the next full byte
|
# If we move to a new row, skip to the next full byte
|
||||||
if bitPos > 0:
|
if bitPos > 0:
|
||||||
inc bytePos
|
inc bytePos
|
||||||
bitPos = 0
|
bitPos = 0
|
||||||
|
of 4:
|
||||||
|
var bytePos: int
|
||||||
|
for y in 0 ..< header.height:
|
||||||
|
for x in 0 ..< header.width:
|
||||||
|
result[x + y * header.width] = ColorRGBA(
|
||||||
|
r: unfiltered[bytePos],
|
||||||
|
g: unfiltered[bytePos],
|
||||||
|
b: unfiltered[bytePos],
|
||||||
|
a: unfiltered[bytePos + 1]
|
||||||
|
)
|
||||||
|
bytePos += 2
|
||||||
|
of 6:
|
||||||
|
var bytePos: int
|
||||||
|
for y in 0 ..< header.height:
|
||||||
|
for x in 0 ..< header.width:
|
||||||
|
result[x + y * header.width] = cast[ColorRGBA](
|
||||||
|
unfiltered.readUint32(bytePos)
|
||||||
|
)
|
||||||
|
bytePos += 4
|
||||||
|
else:
|
||||||
|
discard # Not possible, parseHeader validates
|
||||||
|
|
||||||
proc decodePng*(data: seq[uint8]): Image =
|
proc decodePng*(data: seq[uint8]): Image =
|
||||||
## Decodes the PNG from the parameter buffer. Check png.channels and
|
## Decodes the PNG from the parameter buffer. Check png.channels and
|
||||||
|
|
Loading…
Reference in a new issue