Initial commit

This commit is contained in:
Michael Smith
2023-05-11 23:39:28 +02:00
committed by Michael Smith
commit d9ce760d19
19 changed files with 4185 additions and 0 deletions

17
index.html Normal file
View File

@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css" />
<script type="module" src="main.js"></script>
<title>IFF PBM image viewer</title>
</head>
<body>
<input type="file" id="imagefile" />
<canvas id="thumbnail-canvas"></canvas>
<canvas id="image-canvas"></canvas>
</body>
</html>