GDI中如何判断两个字体是否相同+
我正在用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要比较指针是否指向相同的地址/对象,请参阅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.