带有偏移字符的 Windows API 文本字段
是否可以使用 Windows API 创建一个文本字段,让我按精确像素偏移字符?如果是这样-怎么办?
例如,我想将两个 O 字母放在一起,这样它们就形成了类似 8 ?
context 是一种语言的应用程序,其中大多数字形都是从左到右书写的,但有时一些字形是彼此堆叠的。
Windows API,因为我们使用的框架已经在整个 GUI 中使用了 Windows API。
谢谢!
Is it possible using the Windows API, to create a textfield that lets me offset characters by exact pixels? if so - how?
for example, I would like to place two O letters on top of each other, such that they form something like an 8 ?
context is an application for a language where most of the glyphs are written left to right, but sometimes some of the glyphs are stacket on top of each other.
Windows API because the framework we're using already uses the Windows API for the whole GUI.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用超类或子类并使用 GDI 函数自行绘制文本
use superclassing or subclassing and draw the text yourself using GDI functions