1
0
mirror of https://github.com/Stirling-Tools/Stirling-PDF.git synced 2024-06-03 06:10:11 +02:00

Fixes minor typos

This commit is contained in:
Dimitrios Kaitantzidis 2023-10-08 16:04:35 +03:00
parent b0f8f56650
commit bd9b267562

View File

@ -214,7 +214,6 @@ select#font-select, select#font-select option {
canvas.width = textWidth;
canvas.height = paragraphs.length * textHeight*1.35; //for tails
// ctx.font = `${fontSize / 2}px ${font}`;
ctx.font = `${fontSize}px ${font}`;
@ -227,7 +226,6 @@ select#font-select, select#font-select option {
console.log(canvas.height);
paragraphs.forEach(paragraph => {
// ctx.letterSpacing = "50px";
ctx.fillText(paragraph, 0, y);
y += fontSize;
});