This commit is contained in:
Alexander Popov 2021-11-15 03:02:41 +03:00
parent e4c0f96c74
commit fb558f0256
Signed by: iiiypuk
GPG Key ID: 398FC73478D97286
2 changed files with 2 additions and 3 deletions

View File

@ -1,6 +1,6 @@
# JavaScript
## Canvas
- [Drawing text](drawing-text.js)
- [measureText()](measureText.js) - возвращает информацию об измеренном тексте, например ширину
- [Drawing text](drawing-text.js) - примеры рисования текста на CANVAS
- [`measureText()`](measureText.js) - возвращает информацию об измеренном тексте, например ширину
- [`drawImage()`](canvas.drawImage.js) - метод Canvas 2D API рисования изображения на холсте

View File

@ -3,4 +3,3 @@ const ctx = canvas.getContext('2d');
let text = ctx.measureText('Hello world');
console.log(text.width); // 56;