pixie/tests/validate_png.nim

33 lines
833 B
Nim
Raw Normal View History

2020-11-21 02:21:27 +00:00
import chroma, pixie/fileformats/png, stb_image/read as stbi, strformat, pngsuite
for file in pngSuiteFiles:
let
data = readFile(&"tests/data/pngsuite/{file}.png")
pixieLoaded = decodePng(cast[seq[uint8]](data))
var
width, height, channels: int
stbiLoadedData = loadFromMemory(
cast[seq[byte]](data),
width,
height,
channels,
stbi.RGBA
)
stbiLoadedRGBA: seq[ColorRGBA]
var i: int
while i < stbiLoadedData.len:
stbiLoadedRGBA.add(ColorRGBA(
r: stbiLoadedData[i + 0],
g: stbiLoadedData[i + 1],
b: stbiLoadedData[i + 2],
a: stbiLoadedData[i + 3]
))
i += 4
doAssert pixieLoaded.width == width
doAssert pixieLoaded.height == height
doAssert pixieLoaded.data.len == stbiLoadedRGBA.len
doAssert pixieLoaded.data == stbiLoadedRGBA