-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtext_image.js
226 lines (169 loc) · 5.65 KB
/
text_image.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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
// Add Text to image
let scaleFactor = 1.0;
let colorCanvas = document.getElementById("canvasOutput");
let textCanvas = document.getElementById("textOutput");
let ignoreColor = "#ffffffff"
function componentToHex(c) {
var hex = c.toString(16);
return hex.length == 1 ? "0" + hex : hex;
}
function rgbToHex(r, g, b, a) {
return "#" + componentToHex(r) + componentToHex(g) + componentToHex(b) + componentToHex(a);
}
function onClickConvert() {
let text = document.getElementById("input-text");
let colorCanvas = document.getElementById("canvasOutput");
let textCanvas = document.getElementById("textOutput");
let canvasContext = colorCanvas.getContext('2d');
let fontSize = document.getElementById('font-input').value;
//canvasContext.clearRect(0,0,canvas.width,canvas.height) // Clear It
canvasContext.font = fontSize + "px Arial"; // Set Font
//canvasContext.fillText(text.value, 10, 50); // Add the text
smartResizeCanvas(colorCanvas, textCanvas, text.value);
wrapText(textCanvas, text.value);
// Create Downloadable image png
createDownload(colorCanvas);
//console.log(text.value);
}
function createDownload(canvas) {
let link = document.getElementById('download-anchor');
link.addEventListener('click', function (ev) {
link.href = textCanvas.toDataURL();
link.download = "davincis-masterpiece.png";
}, false);
let button = document.getElementById("download-button");
button.disabled=false;
}
function getLineHeight(ctx) {
return parseInt(ctx.font.split('px')[0]);
}
function wrapText(canvas, str) {
/**
* for letter in text{
* if x > canvas_width{
* x = 0
* y+=line_height
* }
*
* drawLetter(canvas, char, x,y)
* x+= char_width
* }
*/
let ctx = canvas.getContext('2d');
let lineHeight = getLineHeight(ctx);
let x = lineHeight;
let y = lineHeight;
let letter = " ";
let line = "";
for (var i = 0; i < str.length; i++) {
letter = str.charAt(i);
var metric = ctx.measureText(letter);
if (y > canvas.height){
break;
}
if (x > canvas.width - lineHeight) {
y += lineHeight;
x = lineHeight;
line = "";
}
line += letter;
if (!drawLetter(colorCanvas, letter, x, y)){
i--;
};
x += metric.width;
}
}
function getColor(canvas, x, y) {
let ctx = document.getElementById("canvasOutput").getContext('2d')
let colorX = x / scaleFactor;
let colorY = y / scaleFactor;
let data = ctx.getImageData(colorX, colorY, 1, 1).data;
let colorHex = rgbToHex(data[0], data[1], data[2], data[3]);
//"#fe3482"
return colorHex;
}
function resizeCanvas(inputCanvas, outputCanvas, str) {
let ctx = inputCanvas.getContext('2d');
let charWidth = ctx.measureText(str).width / str.length;
let charHeight = getLineHeight(ctx);
let xRatio = inputCanvas.width / charWidth;
let yRatio = inputCanvas.height / charHeight;
scaleFactor = Math.sqrt(str.length / (xRatio * yRatio));
outputCanvas.width = inputCanvas.width * scaleFactor;
outputCanvas.height = inputCanvas.height * scaleFactor;
outputCanvas.getContext('2d').font = ctx.font;
}
function smartResizeCanvas(inputCanvas, outputCanvas, str) {
let ctx = inputCanvas.getContext('2d')
let charWidth = ctx.measureText(str).width / str.length;
let charHeight = getLineHeight(ctx);
scaleFactor = 1;
let pixelRatio = getValidPixelRatio();
let xRatio = inputCanvas.width / charWidth;
let yRatio = inputCanvas.height / charHeight;
scaleFactor = Math.sqrt(str.length / (xRatio * yRatio * pixelRatio));
outputCanvas.width = inputCanvas.width * scaleFactor;
outputCanvas.height = inputCanvas.height * scaleFactor;
outputCanvas.getContext('2d').font = ctx.font;
}
function getValidPixelRatio() {
let width = colorCanvas.width;
let height = colorCanvas.height;
ctx = colorCanvas.getContext('2d');
let background = "#ffffffff";
let transparent = "#00000000";
let invalidPixels = 0;
for (var i = 0; i < width; i++) {
for (var j = 0; j < height; j++) {
let color = getColor(colorCanvas, i, j);
// if (i%50 === 1 && j%50 ===1) {
// console.log({color})
// }
if (isWhite(color) || isTransparent(color)) {
invalidPixels++;
//console.log({color, invalidPixels})
}
}
}
let pixelRatio = 1 - (invalidPixels / (width * height));
return pixelRatio;
}
function isWhite(hex){
return (hex[1] === 'f' && hex[3] ==='f' && hex[5] === 'f');
}
function isTransparent(hex){
return hex[8] === '0';
}
/**
* Draw character at selected position
* @param canvas Canvas to draw character on
* @param char
* @param x x-position of character
* @param y
* @return Return if the character has been successfully drawn at position, if not return false
*/
function drawLetter(canvas, char, x, y) {
/**
* if there is color at x,y
* increment the x,y to next pos
* return false
* else if there is color
* filltext
* return true
*/
let ctx = textCanvas.getContext('2d');
// if(ctx.ucharPtr(x, y)[0] != null || ctx.ucharPtr(x, y)[0] != 0){
// return;
// }else{
let drawColor = getColor(colorCanvas, x, y);
if (isWhite(drawColor) || isTransparent(drawColor)){
ctx.fillStyle = "#00000000";
ctx.fillText(char, x, y);
return false;
} else {
ctx.fillStyle = drawColor;
ctx.fillText(char, x, y);
return true;
}
// }
}