CDC文本绘制问题

发布于 2024-07-16 02:14:40 字数 230 浏览 6 评论 0原文

我正在尝试使用 CDC::ExtTextOut() 将文本绘制到设备上下文 (CDC),但我得到了垃圾输出。 绘制的输出文本是奇怪的字体。

传递给我的 CDC 指针源自 unicode 构建 ActiveX 控件 (.ocx)。 文本绘制代码驻留在 ANSI 构建 DLL 中。

此设置似乎存在某种不兼容性。

有人遇到过这种情况吗?你是如何解决的?

谢谢。

I'm trying to draw text using CDC::ExtTextOut() to a device context (CDC), but I'm getting garbage outputs. The output text was drawn is weird fonts.

The CDC pointer that got passed to me was originated from a unicode build ActiveX control (.ocx).
The text drawing code resides in an ANSI build DLL.

It seems like there're some kind of incompatibilities in this setup.

Has anyone run into this situation and how did you solve it?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

故乡的云 2024-07-23 02:14:40

您是否尝试过在 CDC 上设置字体?

CFont *oldvalue = dc->SelectObject(GetStockObject(OEM_FIXED_FONT));

dc->ExtTextOut(....);

dc->SelectObject(oldvalue);

Have you tried setting a font on the CDC?

CFont *oldvalue = dc->SelectObject(GetStockObject(OEM_FIXED_FONT));

dc->ExtTextOut(....);

dc->SelectObject(oldvalue);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文