-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcanvas-bdf.html
37 lines (34 loc) · 992 Bytes
/
canvas-bdf.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html>
<head>
<title>BDFFont on canvas</title>
<script type="text/javascript" src="//code.jquery.com/jquery-1.4.2.min.js"></script>
<script type="text/javascript" src="bdffont.js"></script>
<script type="text/javascript" src="site-script.js"></script>
</head>
<body>
<h1>BDFFont on canvas</h1>
<p>
custom font file:
<input type="file" id="file"/>
</p>
<div>
<h2>DEBUG: glyphs x10</h2>
<p>
<input type="text" size="60" id="input1" value="All your base"/>
<label><input type="checkbox" id="edge" value="edge"/>Edge</label>
</p>
<canvas id="glyphs" width="1000" height="200"></canvas>
</div>
<div>
<h2>Real scale</h2>
<p>
<input type="text" size="60" id="input2" value="Hello, World!"/>
</p>
<canvas id="canvas" width="1000" height="200" style="border: 1px solid #ccc"></canvas>
</div>
<div>
<a href="http://mplus-fonts.sourceforge.jp/mplus-bitmap-fonts/index.html">M+ BITMAP</a>
</div>
</body>
</html>