-
Notifications
You must be signed in to change notification settings - Fork 8
/
jsascii.js
194 lines (161 loc) · 5.41 KB
/
jsascii.js
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
/*
* jsAscii 0.1
* Copyright (c) 2008 Jacob Seidelin, jseidelin@nihilogic.dk, http://blog.nihilogic.dk/
* MIT License [http://www.nihilogic.dk/licenses/mit-license.txt]
*/
var jsAscii = (function() {
var aDefaultCharList = (" .,:;i1tfLCG08@").split("");
var aDefaultColorCharList = (" CGO08@").split("");
var strFont = "courier new";
// convert img element to ascii
function asciifyImage(oImg, oCanvasImg)
{
var oCanvas = document.createElement("canvas");
if (!oCanvas.getContext) {
return;
}
var oCtx = oCanvas.getContext("2d");
if (!oCtx.getImageData) {
return;
}
var iScale = parseInt(oImg.getAttribute("asciiscale")) || 1;
var bColor = (oImg.getAttribute("asciicolor") == "true");
var bAlpha = (oImg.getAttribute("asciialpha") == "true");
var bBlock = (oImg.getAttribute("asciiblock") == "true");
var bInvert = (oImg.getAttribute("asciiinvert") == "true");
var strResolution = oImg.getAttribute("asciiresolution") || "medium";
var aCharList = oImg.getAttribute("asciichars") ||
(bColor ? aDefaultColorCharList : aDefaultCharList);
var fResolution = 0.5;
switch (strResolution) {
case "low" : fResolution = 0.25; break;
case "medium" : fResolution = 0.5; break;
case "high" : fResolution = 1; break;
}
var iWidth = Math.round(parseInt(oImg.offsetWidth) * fResolution);
var iHeight = Math.round(parseInt(oImg.offsetHeight) * fResolution);
oCanvas.width = iWidth;
oCanvas.height = iHeight;
oCanvas.style.display = "none";
oCanvas.style.width = iWidth;
oCanvas.style.height = iHeight;
oCtx.drawImage(oCanvasImg, 0, 0, iWidth, iHeight);
var oImgData = oCtx.getImageData(0, 0, iWidth, iHeight).data;
var strChars = "";
for (var y=0;y<iHeight;y+=2) {
for (var x=0;x<iWidth;x++) {
var iOffset = (y*iWidth + x) * 4;
var iRed = oImgData[iOffset];
var iGreen = oImgData[iOffset + 1];
var iBlue = oImgData[iOffset + 2];
var iAlpha = oImgData[iOffset + 3];
if (iAlpha == 0) {
var iBrightIdx = 0;
} else {
var fBrightness = (0.3*iRed + 0.59*iGreen + 0.11*iBlue) / 255;
var iCharIdx = (aCharList.length-1) - Math.round(fBrightness * (aCharList.length-1));
}
if (bInvert) {
iCharIdx = (aCharList.length-1) - iCharIdx;
}
var strThisChar = aCharList[iCharIdx];
if (strThisChar == " ")
strThisChar = " ";
if (bColor) {
strChars += "<span style='"
+ "color:rgb("+iRed+","+iGreen+","+iBlue+");"
+ (bBlock ? "background-color:rgb("+iRed+","+iGreen+","+iBlue+");" : "")
+ (bAlpha ? "opacity:" + (iAlpha/255) + ";" : "")
+ "'>" + strThisChar + "</span>";
} else {
strChars += strThisChar;
}
}
strChars += "<br/>";
}
var fFontSize = (2/fResolution)*iScale;
var fLineHeight = (2/fResolution)*iScale;
// adjust letter-spacing for all combinations of scale and resolution to get it to fit the image width.
var fLetterSpacing = 0;
if (strResolution == "low") {
switch (iScale) {
case 1 : fLetterSpacing = -1; break;
case 2 :
case 3 : fLetterSpacing = -2.1; break;
case 4 : fLetterSpacing = -3.1; break;
case 5 : fLetterSpacing = -4.15; break;
}
}
if (strResolution == "medium") {
switch (iScale) {
case 1 : fLetterSpacing = 0; break;
case 2 : fLetterSpacing = -1; break;
case 3 : fLetterSpacing = -1.04; break;
case 4 :
case 5 : fLetterSpacing = -2.1; break;
}
}
if (strResolution == "high") {
switch (iScale) {
case 1 :
case 2 : fLetterSpacing = 0; break;
case 3 :
case 4 :
case 5 : fLetterSpacing = -1; break;
}
}
// can't get a span or div to flow like an img element, but a table works?
var oAscii = document.createElement("table");
oAscii.innerHTML = "<tr><td>" + strChars + "</td></tr>";
if (oImg.style.backgroundColor) {
oAscii.rows[0].cells[0].style.backgroundColor = oImg.style.backgroundColor;
oAscii.rows[0].cells[0].style.color = oImg.style.color;
}
oAscii.cellSpacing = 0;
oAscii.cellPadding = 0;
var oStyle = oAscii.style;
oStyle.display = "inline";
oStyle.width = Math.round(iWidth/fResolution*iScale) + "px";
oStyle.height = Math.round(iHeight/fResolution*iScale) + "px";
oStyle.whiteSpace = "pre";
oStyle.margin = "0px";
oStyle.padding = "0px";
oStyle.letterSpacing = fLetterSpacing + "px";
oStyle.fontFamily = strFont;
oStyle.fontSize = fFontSize + "px";
oStyle.lineHeight = fLineHeight + "px";
oStyle.textAlign = "left";
oStyle.textDecoration = "none";
oImg.parentNode.replaceChild(oAscii, oImg);
}
// load the image file
function asciifyImageLoad(oImg)
{
var oCanvasImg = new Image();
oCanvasImg.src = oImg.src;
if (oCanvasImg.complete) {
asciifyImage(oImg, oCanvasImg);
} else {
oCanvasImg.onload = function() {
asciifyImage(oImg, oCanvasImg)
}
}
}
return function() {
var aImg = document.getElementsByTagName("img");
var aImages = [];
for (var i=0;i<aImg.length;i++) {
aImages[i] = aImg[i];
}
for (var i=0;i<aImages.length;i++) {
if (aImages[i].getAttribute("asciify") == "true") {
asciifyImageLoad(aImages[i]);
}
}
}
})();
if (window.addEventListener) {
window.addEventListener("load", jsAscii, false);
} else if (window.attachEvent) {
window.attachEvent("onload", jsAscii);
}