richgel999 / random_pngs

A collection of random PNG test files

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

random_pngs

A collection of nearly 3,000 random PNG test files for validation and fuzzing purposes, generating with lodepng.

Please note that lodepng's PNG encoder is highly aggressive about optimizing the colortype/bpp/used PNG features used for encoding. I disabled lodepng encoder's "auto_convert" option when generating these PNG's, but I can't guarantee that the filename attributes and the used PNG features/options always match. This is a work in progress, but I hope others find this useful. I will release the cpp test app that generates this set soon.

The filename format is:

sprintf(filename, "rand_%u_%u_%u_%u_%u_%u_%u.png", width, height, bit_depth, ct, has_key, uses_pal_alpha, interlace_method);

width/height ranges between [1,32]

bit_depth is 1, 2, 4, 8, or 16

ct is the PNG color type: 0, 2, 3, 4, or 6

has_key is 1 if the PNG uses a TRNS chunk for colorkey transparency

uses_pal_alpha is 1 if a palettized PNG uses alpha transparency

interlace_method is 1 if the PNG uses adam7 interlacing

The pixel data and palettes are psuedo-random.

About

A collection of random PNG test files

License:The Unlicense