Hufe921 / canvas-editor

rich text editor by canvas/svg
https://hufe.club/canvas-editor-docs
MIT License
3.72k stars 555 forks source link

光标位置 #813

Closed wangtao1025 closed 3 weeks ago

wangtao1025 commented 2 months ago

version

latest

Link to minimal reproduction

No response

Steps to reproduce

官网 demo 中在中文标题中间插入多个英文字符会造成光标位置不准确 Snipaste_2024-09-20_17-22-51

What is expected?

光标准确

What is actually happening?

Editor Value

No response

System Info

No response

Any additional comments?

No response

Hufe921 commented 2 months ago

先配置使用渲染兼容模式:

const options: IEditorOption = {
  renderMode: RenderMode.COMPATIBILITY
}
claviering commented 1 month ago

连续输入数字 1 也会出现光标位置不准确

ctx.font = '24px Microsoft YaHei';
ctx.measureText("1").width * 2 !== ctx.measureText("11").width
// ctx.measureText("1").width: 12
// ctx.measureText("11").width: 23.12109375