如何在纯gdi(不是gdi+)中填充圆角矩形的渐变

发布于 2024-08-28 18:37:44 字数 25 浏览 2 评论 0原文

只是在纯gdi中。 欢迎想法或代码。

just in pure gdi.
thoughts or code are all welcome.

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

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

发布评论

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

评论(1

南…巷孤猫 2024-09-04 18:37:44

创建一个圆角矩形作为路径,选择该路径作为剪切路径,然后对同一矩形进行渐变填充。使用 MFC 的代码如下所示:

int top = 10;
int left = 10;
int right = 200;
int bottom = 200;
int radius = 20;


pDC->BeginPath();
pDC->RoundRect(left, top, right, bottom, radius, radius);
pDC->EndPath();
pDC->SelectClipPath(RGN_COPY);

TRIVERTEX vertices[2];

vertices[0].x = left;
vertices[0].y = top;
vertices[0].Red = 0xffff;
vertices[0].Green = 0;
vertices[0].Blue = 0;
vertices[0].Alpha = 0xffff;

vertices[1].x = right;
vertices[1].y = bottom;
vertices[1].Red = 0;
vertices[1].Green = 0;
vertices[1].Blue = 0xffff;
vertices[1].Alpha = 0xffff;

GRADIENT_RECT r;
r.UpperLeft = 0;
r.LowerRight = 1;

pDC->GradientFill(vertices, 2, &r, 1, GRADIENT_FILL_RECT_V);

如果您不使用 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:

int top = 10;
int left = 10;
int right = 200;
int bottom = 200;
int radius = 20;


pDC->BeginPath();
pDC->RoundRect(left, top, right, bottom, radius, radius);
pDC->EndPath();
pDC->SelectClipPath(RGN_COPY);

TRIVERTEX vertices[2];

vertices[0].x = left;
vertices[0].y = top;
vertices[0].Red = 0xffff;
vertices[0].Green = 0;
vertices[0].Blue = 0;
vertices[0].Alpha = 0xffff;

vertices[1].x = right;
vertices[1].y = bottom;
vertices[1].Red = 0;
vertices[1].Green = 0;
vertices[1].Blue = 0xffff;
vertices[1].Alpha = 0xffff;

GRADIENT_RECT r;
r.UpperLeft = 0;
r.LowerRight = 1;

pDC->GradientFill(vertices, 2, &r, 1, GRADIENT_FILL_RECT_V);

If you're not using MFC, the pDC->x(...) would be replaced with x(your_DC, ...).

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