1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 11:57:34 +00:00

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

This commit is contained in:
Hüseyin ASLITÜRK 2020-06-22 14:06:12 +03:00 committed by Andreas Kling
parent 326032b138
commit f361d25ec8
5 changed files with 241 additions and 0 deletions

View file

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