diff options
author | LepkoQQ <lepko.san@gmail.com> | 2020-04-26 20:14:01 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-04-26 20:29:17 +0200 |
commit | b094c064d85d40db218534244f37c6011ad019f7 (patch) | |
tree | e38284638abb65e20f1a4c52060cd4166ac37c0d /Base/home | |
parent | e5a598414fbf142d3f7c150b8bdb6856ea268218 (diff) | |
download | serenity-b094c064d85d40db218534244f37c6011ad019f7.zip |
Base: Add test page for decoding different basic png formats.
Diffstat (limited to 'Base/home')
-rw-r--r-- | Base/home/anon/www/pngsuite_bas_png.html | 26 | ||||
-rw-r--r-- | Base/home/anon/www/welcome.html | 1 |
2 files changed, 27 insertions, 0 deletions
diff --git a/Base/home/anon/www/pngsuite_bas_png.html b/Base/home/anon/www/pngsuite_bas_png.html new file mode 100644 index 0000000000..121efae6a4 --- /dev/null +++ b/Base/home/anon/www/pngsuite_bas_png.html @@ -0,0 +1,26 @@ +<HTML> +<HEAD> +<TITLE>PngSuite - Basic formats / PNG-files</TITLE> +</HEAD> +<BODY BGCOLOR="#ede"> + +<!-- Modified version of http://schaik.com/pngsuite/pngsuite_bas_png.html --> + +<BR><IMG SRC="http://schaik.com/pngsuite/basn0g01.png" WIDTH="32" HEIGHT="32"> --- basn0g01 - black & white +<BR><IMG SRC="http://schaik.com/pngsuite/basn0g02.png" WIDTH="32" HEIGHT="32"> --- basn0g02 - 2 bit (4 level) grayscale +<BR><IMG SRC="http://schaik.com/pngsuite/basn0g04.png" WIDTH="32" HEIGHT="32"> --- basn0g04 - 4 bit (16 level) grayscale +<BR><IMG SRC="http://schaik.com/pngsuite/basn0g08.png" WIDTH="32" HEIGHT="32"> --- basn0g08 - 8 bit (256 level) grayscale +<BR><IMG SRC="http://schaik.com/pngsuite/basn0g16.png" WIDTH="32" HEIGHT="32"> --- basn0g16 - 16 bit (64k level) grayscale +<BR><IMG SRC="http://schaik.com/pngsuite/basn2c08.png" WIDTH="32" HEIGHT="32"> --- basn2c08 - 3x8 bits rgb color +<BR><IMG SRC="http://schaik.com/pngsuite/basn2c16.png" WIDTH="32" HEIGHT="32"> --- basn2c16 - 3x16 bits rgb color +<BR><IMG SRC="http://schaik.com/pngsuite/basn3p01.png" WIDTH="32" HEIGHT="32"> --- basn3p01 - 1 bit (2 color) paletted +<BR><IMG SRC="http://schaik.com/pngsuite/basn3p02.png" WIDTH="32" HEIGHT="32"> --- basn3p02 - 2 bit (4 color) paletted +<BR><IMG SRC="http://schaik.com/pngsuite/basn3p04.png" WIDTH="32" HEIGHT="32"> --- basn3p04 - 4 bit (16 color) paletted +<BR><IMG SRC="http://schaik.com/pngsuite/basn3p08.png" WIDTH="32" HEIGHT="32"> --- basn3p08 - 8 bit (256 color) paletted +<BR><IMG SRC="http://schaik.com/pngsuite/basn4a08.png" WIDTH="32" HEIGHT="32"> --- basn4a08 - 8 bit grayscale + 8 bit alpha-channel +<BR><IMG SRC="http://schaik.com/pngsuite/basn4a16.png" WIDTH="32" HEIGHT="32"> --- basn4a16 - 16 bit grayscale + 16 bit alpha-channel +<BR><IMG SRC="http://schaik.com/pngsuite/basn6a08.png" WIDTH="32" HEIGHT="32"> --- basn6a08 - 3x8 bits rgb color + 8 bit alpha-channel +<BR><IMG SRC="http://schaik.com/pngsuite/basn6a16.png" WIDTH="32" HEIGHT="32"> --- basn6a16 - 3x16 bits rgb color + 16 bit alpha-channel + +</BODY> +</HTML> diff --git a/Base/home/anon/www/welcome.html b/Base/home/anon/www/welcome.html index db445643f2..66ce6f730c 100644 --- a/Base/home/anon/www/welcome.html +++ b/Base/home/anon/www/welcome.html @@ -28,6 +28,7 @@ span#ua { <p>Your user agent is: <b><span id="ua"></span></b></p> <p>Some small test pages:</p> <ul> + <li><a href="pngsuite_bas_png.html">pngsuite basic formats test</a></li> <li><a href="canvas-path.html">canvas path house!</a></li> <li><a href="img-canvas.html">canvas drawImage() test</a></li> <li><a href="trigonometry.html">canvas + trigonometry functions</a></li> |