谁能给我提供一个使用 CreateHatchBrush 的示例
我想在我的软件中的缩略图周围绘制阴影。 看来 CreateHatchBrush 可以提供帮助,但我不知道如何使用它,任何人都可以为我提供 C++ 示例吗? 非常感谢!
I want to draw a shadow around a thumbnail in my software.
It seems CreateHatchBrush can help but I do not know how to use it, can anyone provide me a sample in C++?
Many thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最简单的选择是使用 GDI+做这个。 这是一个快速而肮脏的阴影渲染示例:
希望这有帮助!
The easiest option would be to use GDI+ to do this. Here's a quick and dirty shadow rendering sample:
Hope this helps!
我没有示例,但有一些关于 Windows 中画笔的一般用法的提示。
CreateHatchBrush()
返回一个句柄。 您需要使用该句柄使该画笔成为您用于渲染的设备上下文中的当前画笔。 调用设备上下文的SetObject
函数(普通 Windows GDI 调用版本):I don't have a sample, but some hints on general usage of brushes in Windows.
CreateHatchBrush()
returns a handle. You need to use that handle to make that brush the current brush in the Device Context you are using to render. Call the Device Context'sSetObject
function (plain Windows GDI calls version):