为什么为文本字段设置不同的scaleX和scaleY会扭曲文本?
我有一个文本字段,其中我使用嵌入字体,问题是当我改变它的大小并且我没有设置相同的scaleX和scaleY值时,当我缩小它时似乎会压缩其中的字母,并且当我缩小它时会拉伸文本使它更大...
我尝试使用宽度和高度值(而不是scaleX和scaleY,但其结果相同)...似乎嵌入的字体保持某种纵横比或其他什么,并且这仅在以下情况下发生embedFonts 设置为 true
i have a textField wherein i uses embedded fonts, the problem is when i change its size and i do not set the SAME scaleX and scaleY value, it seems to compress the letters inside it when i make it smaller, and stretch the text when i make it bigger...
i tried using width and height values (instead of scaleX and scaleY but its the same result)... it seems that the embedded fonts are maintaining some kind of aspect ratio or whatever, and again this only happens when embedFonts is set to true
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
保持比例的一个简单解决方案是同时使用宽度/高度和scaleX/Y:
An easy solution for maintaining a ratio is to use width/height and scaleX/Y together:
//为什么不使用“设备字体”?
//Why don't you use "device fonts"?