Added browser-based gif decoder, encoder and renderer

This commit is contained in:
CBenni 2017-12-28 13:19:33 +00:00
parent 78281ceb23
commit 2f2e71c7d8
7 changed files with 358 additions and 0 deletions

20
gifsupport/index.html Normal file
View file

@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>A Pen by CBenni</title>
</head>
<body>
<canvas height=256 width=2560 style="border: 1px solid black;" id="c"></canvas>
<img id="i">
<script src='https://rawgit.com/deanm/omggif/master/omggif.js'></script>
<script src='gif.js'></script>
<script src="index.js"></script>
</body>
</html>