GDI中如何判断两个字体是否相同+

发布于 2024-07-29 23:44:38 字数 113 浏览 2 评论 0原文

我正在用 gdi+ c++ 编写程序。
我怎么知道两个 Font* p1, Font* p2 是相同的。

p1和p2是不同地址的点。
p1 p2 指向不同的对象:)

I am writing program in gdi+ c++.
How can I know two Font* p1, Font* p2 are the same.

p1 and p2 are points of different address.
p1 p2 point to different object:)

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

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

发布评论

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

评论(1

情话难免假 2024-08-05 23:44:39

要比较指针是否指向相同的地址/对象,请参阅StackOverFlow问题如何比较指针

为了检查字体是否相同(例如相同的字体、大小和样式),您需要比较

两种字体的

。 或者,您可以调用 Font:: GetLogFontA字体::GetLogFontW 并比较您感兴趣的每个结构条目。

To compare if the pointers point to the same address / object see StackOverFlow Question How to compare pointers.

In order to check if the font are the equivalent (e.g. same font , size, and style), you want to compare the output of

of the two fonts.

Alternately you can call Font::GetLogFontA or Font::GetLogFontW and compare each of the structure entries you are interested in equating.

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