1 | <?php |
---|
2 | header('Content-Type: text/html; charset=UTF-8'); |
---|
3 | ?> |
---|
4 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" |
---|
5 | "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
---|
6 | |
---|
7 | <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> |
---|
8 | <?php |
---|
9 | /* |
---|
10 | * unicode libcaca Unicode rendering test program |
---|
11 | * Copyright (c) 2008 Benjamin C. Wiley Sittler <bsittler@gmail.com> |
---|
12 | * |
---|
13 | * This file is a Php port of "examples/unicode.c" |
---|
14 | * which is: |
---|
15 | * Copyright (c) 2006 Sam Hocevar <sam@zoy.org> |
---|
16 | * All Rights Reserved |
---|
17 | * |
---|
18 | * $Id: unicode.php 3281 2008-11-04 05:28:03Z bsittler $ |
---|
19 | * |
---|
20 | * This program is free software. It comes without any warranty, to |
---|
21 | * the extent permitted by applicable law. You can redistribute it |
---|
22 | * and/or modify it under the terms of the Do What The Fuck You Want |
---|
23 | * To Public License, Version 2, as published by Sam Hocevar. See |
---|
24 | * http://sam.zoy.org/wtfpl/COPYING for more details. |
---|
25 | */ |
---|
26 | ?> |
---|
27 | <head> |
---|
28 | <title>libcaca Unicode rendering test program</title> |
---|
29 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> |
---|
30 | </head> |
---|
31 | <body text="silver" bgcolor="black"> |
---|
32 | <?php |
---|
33 | |
---|
34 | $cv = caca_create_canvas(80, 25); |
---|
35 | if(! $cv) |
---|
36 | { |
---|
37 | die("Can't created canvas\n"); |
---|
38 | } |
---|
39 | caca_set_color_ansi($cv, CACA_WHITE, CACA_BLUE); |
---|
40 | caca_put_str($cv, 1, 1, "Basic Unicode support"); |
---|
41 | |
---|
42 | caca_set_color_ansi($cv, CACA_DEFAULT, CACA_TRANSPARENT); |
---|
43 | caca_put_str($cv, 1, 2, "This is ASCII: | abc DEF 123 !@# |"); |
---|
44 | caca_put_str($cv, 1, 3, "This is Unicode: | äßç δεφ ☺♥♀ ╞╬╗ |"); |
---|
45 | caca_put_str($cv, 1, 4, "And this is, too: | ἀβϛ ΔЗҒ ᚴᛒᛯ ♩♔✈ |"); |
---|
46 | |
---|
47 | caca_put_str($cv, 1, 5, "If the three lines do not have the same length, there is a bug somewhere."); |
---|
48 | |
---|
49 | caca_set_color_ansi($cv, CACA_WHITE, CACA_BLUE); |
---|
50 | caca_put_str($cv, 1, 7, "Gradient glyphs"); |
---|
51 | |
---|
52 | caca_set_color_ansi($cv, CACA_DEFAULT, CACA_TRANSPARENT); |
---|
53 | caca_put_str($cv, 31, 8, " 0%"); |
---|
54 | caca_put_str($cv, 31, 9, " 25%"); |
---|
55 | caca_put_str($cv, 31, 10, " 50%"); |
---|
56 | caca_put_str($cv, 31, 11, " 75%"); |
---|
57 | caca_put_str($cv, 31, 12, "100%"); |
---|
58 | |
---|
59 | caca_set_color_ansi($cv, CACA_LIGHTRED, CACA_LIGHTGREEN); |
---|
60 | caca_put_str($cv, 1, 8, " "); |
---|
61 | caca_put_str($cv, 1, 9, "░░░░░░░░░░░░░░░░░░░░░░░░░░░░░"); |
---|
62 | caca_put_str($cv, 1, 10, "▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒"); |
---|
63 | caca_put_str($cv, 1, 11, "▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓"); |
---|
64 | caca_put_str($cv, 1, 12, "█████████████████████████████"); |
---|
65 | |
---|
66 | caca_set_color_ansi($cv, CACA_LIGHTGREEN, CACA_LIGHTRED); |
---|
67 | caca_put_str($cv, 36, 8, "█████████████████████████████"); |
---|
68 | caca_put_str($cv, 36, 9, "▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓"); |
---|
69 | caca_put_str($cv, 36, 10, "▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒"); |
---|
70 | caca_put_str($cv, 36, 11, "░░░░░░░░░░░░░░░░░░░░░░░░░░░░░"); |
---|
71 | caca_put_str($cv, 36, 12, " "); |
---|
72 | |
---|
73 | caca_set_color_ansi($cv, CACA_WHITE, CACA_BLUE); |
---|
74 | caca_put_str($cv, 1, 14, "Double width characters"); |
---|
75 | |
---|
76 | caca_set_color_ansi($cv, CACA_LIGHTRED, CACA_TRANSPARENT); |
---|
77 | caca_put_str($cv, 1, 15, "| ドラゴン ボーレ |"); |
---|
78 | caca_set_color_ansi($cv, CACA_DEFAULT, CACA_TRANSPARENT); |
---|
79 | caca_put_str($cv, 1, 16, "| ()()()() ()()() |"); |
---|
80 | caca_set_color_ansi($cv, CACA_YELLOW, CACA_TRANSPARENT); |
---|
81 | caca_put_str($cv, 1, 17, "| ドラゴン"); |
---|
82 | caca_put_str($cv, 12, 17, "ボーレ |"); |
---|
83 | |
---|
84 | caca_set_color_ansi($cv, CACA_DEFAULT, CACA_TRANSPARENT); |
---|
85 | caca_put_str($cv, 1, 18, "If the three lines do not have the same length, there is a bug somewhere."); |
---|
86 | |
---|
87 | caca_put_str($cv, 1, 20, "CP437 glyphs: ☺ ☻ ♥ ♦ ♣ ♠ • ◘ ○ ◙ ♂ ♀ ♪ ♫ ☼ ► ◄ ↕ ‼ ¶ § ▬ ↨ ↑ ↓ → ← ∟ ↔ ▲ ▼"); |
---|
88 | caca_put_str($cv, 1, 21, "more CP437: α ß Γ π Σ σ µ τ Φ Θ Ω δ ∞ φ ε ∩ ≡ ± ≥ ≤ ⌠ ⌡ ÷ ≈ ° ∙ · √ ⁿ ² ■"); |
---|
89 | caca_put_str($cv, 1, 22, "drawing blocks: ███ ▓▓▓ ▒▒▒ ░░░ ▀ ▄ ▌ ▐ █ ▖ ▗ ▘ ▝ ▚ ▞ ▙ ▛ ▜ ▟ ─ │ ┌ ┐ └ ┘ ├ ┤"); |
---|
90 | caca_put_str($cv, 1, 23, "more drawing: ┬ ┴ ┼ ═ ║ ╒ ╓ ╔ ╕ ╖ ╗ ╘ ╙ ╚ ╛ ╜ ╝ ╞ ╟ ╠ ╡ ╢ ╣ ╤ ╥ ╦ ╧ ╨ ╩ ╪ ╫ ╬"); |
---|
91 | caca_put_str($cv, 1, 24, "misc Unicode: ● ☭ ☮ ☯ ♔ ♛ ♙ ♞ ⚒ ⚓ ⚠"); |
---|
92 | |
---|
93 | echo caca_export_string($cv, "html3"); |
---|
94 | |
---|
95 | ?> |
---|
96 | </body> |
---|
97 | </html> |
---|