1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 15:47:44 +00:00

Base: Test web page and images for PGM image file type

This commit is contained in:
Hüseyin ASLITÜRK 2020-06-22 15:22:57 +03:00 committed by Andreas Kling
parent dc5b73c43a
commit b05fd9b15b
5 changed files with 241 additions and 0 deletions

View file

@ -0,0 +1,17 @@
<html>
<head><title>PGM test suite</title></head>
<body>
<table border="1" width="100%">
<tr>
<td align="center">Reference PNG</td>
<td align="center">PGM ASCII</td>
<td align="center">PGM RAW</td>
</tr>
<tr>
<td align="center"><img src="pgmsuite_files/buggie.png"></td>
<td align="center"><img src="pgmsuite_files/buggie-ascii.pgm"></td>
<td align="center"><img src="pgmsuite_files/buggie-raw.pgm"></td>
</tr>
</table>
</body>
</html>