-
Notifications
You must be signed in to change notification settings - Fork 79
/
braille.js
111 lines (93 loc) · 3.08 KB
/
braille.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
function createImageCanvas(src) {
return new Promise((resolve, reject) => {
const canvas = document.createElement("CANVAS");
const image = new Image();
image.onload = () => {
let width = image.width;
let height = image.height;
if(image.width != (settings.width * 2)) {
width = settings.width * 2;
height = width * image.height / image.width;
}
//nearest multiple
canvas.width = width - (width % 2);
canvas.height = height - (height % 4);
ctx = canvas.getContext("2d");
ctx.fillStyle = "#FFFFFF"; //get rid of alpha
ctx.fillRect(0,0, canvas.width,canvas.height);
ctx.mozImageSmoothingEnabled = false;
ctx.webkitImageSmoothingEnabled = false;
ctx.msImageSmoothingEnabled = false;
ctx.imageSmoothingEnabled = false;
ctx.drawImage(image, 0,0, canvas.width,canvas.height);
resolve(canvas);
}
image.src = src;
});
}
function pixelsToCharacter(pixels_lo_hi) { //expects an array of 8 bools
//Codepoint reference - https://www.ssec.wisc.edu/~tomw/java/unicode.html#x2800
const shift_values = [0, 1, 2, 6, 3, 4, 5, 7]; //correspond to dots in braille chars compared to the given array
let codepoint_offset = 0;
for(const i in pixels_lo_hi) {
codepoint_offset += (+pixels_lo_hi[i]) << shift_values[i];
}
if(codepoint_offset === 0 && settings.monospace === false) { //pixels were all blank
codepoint_offset = 4; //0x2800 is a blank braille char, 0x2804 is a single dot
}
return String.fromCharCode(0x2800 + codepoint_offset);
}
function toGreyscale(r, g, b) {
switch(settings.greyscale_mode) {
case "luminance":
return (0.22 * r) + (0.72 * g) + (0.06 * b);
case "lightness":
return (Math.max(r,g,b) + Math.min(r,g,b)) / 2;
case "average":
return (r + g + b) / 3;
case "value":
return Math.max(r,g,b);
default:
console.error("Greyscale mode is not valid");
return 0;
}
}
function canvasToText(canvas) {
const ctx = canvas.getContext("2d");
const width = canvas.width;
const height = canvas.height;
let image_data = [];
if(settings.dithering) {
if(settings.last_dithering === null || settings.last_dithering.canvas !== canvas) {
settings.last_dithering = new Dithering(canvas);
}
image_data = settings.last_dithering.image_data;
} else {
image_data = new Uint8Array(ctx.getImageData(0,0,width,height).data.buffer);
}
let output = "";
for(let imgy = 0; imgy < height; imgy += 4) {
for(let imgx = 0; imgx < width; imgx += 2) {
const braille_info = [0,0,0,0,0,0,0,0];
let dot_index = 0;
for(let x = 0; x < 2; x++) {
for(let y = 0; y < 4; y++) {
const index = (imgx+x + width * (imgy+y)) * 4;
const pixel_data = image_data.slice(index, index+4); //ctx.getImageData(imgx+x,imgy+y,1,1).data
if(pixel_data[3] >= 128) { //account for alpha
const grey = toGreyscale(pixel_data[0], pixel_data[1], pixel_data[2]);
if(settings.inverted) {
if(grey >= 128) braille_info[dot_index] = 1;
} else {
if(grey <= 128) braille_info[dot_index] = 1;
}
}
dot_index++;
}
}
output += pixelsToCharacter(braille_info);
}
output += "\n";
}
return output;
}