如何在纯gdi(不是gdi+)中填充圆角矩形的渐变
只是在纯gdi中。 欢迎想法或代码。
just in pure gdi.
thoughts or code are all welcome.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
只是在纯gdi中。 欢迎想法或代码。
just in pure gdi.
thoughts or code are all welcome.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
创建一个圆角矩形作为路径,选择该路径作为剪切路径,然后对同一矩形进行渐变填充。使用 MFC 的代码如下所示:
如果您不使用 MFC,则
pDC->x(...)
将替换为x(your_DC, ...)< /代码>。
Create a rounded rect as a path, select the path as the clipping path, then do a gradient fill of the same rectangle. Code with MFC would look like this:
If you're not using MFC, the
pDC->x(...)
would be replaced withx(your_DC, ...)
.