扫一扫
分享文章到微信
扫一扫
关注官方公众号
至顶头条
作者:ADDING 来源:yesky 2007年11月16日
关键字:
SolidBrush( const Color& color); HatchBrush( HatchStyle hatchStyle, const Color& foreColor, const Color& backColor); |
LinearGradientBrush(Point & point1, Point & point2, Color & color1, Color & color2); LinearGradientBrush(Rect & rect, Color & color1, Color & color2, REAL angle, BOOL isAngleScalable); LinearGradientBrush(Rect & rect, Color & color1, Color & color2, LinearGradientMode mode); |
PathGradientBrush(const GraphicsPath* path); PathGradientBrush(const Point * points, INT count, WrapMode wrapMode); |
Graphics graphics( pDC->m_hDC ); GraphicsPath path; // 构造一个路径 path.AddEllipse(50, 50, 200, 100); // 使用路径构造一个画刷 PathGradientBrush pthGrBrush(&path); // 将路径中心颜色设为蓝色 pthGrBrush.SetCenterColor(Color(255, 0, 0, 255)); // 设置路径周围的颜色为蓝芭,但alpha值为0 Color colors[] = {Color(0, 0, 0, 255)}; INT count = 1; pthGrBrush.SetSurroundColors(colors, &count); graphics.FillRectangle(&pthGrBrush, 50, 50, 200, 100); LinearGradientBrush linGrBrush( Point(300, 50), Point(500, 150), Color(255, 255, 0, 0), // 红色 Color(255, 0, 0, 255)); // 蓝色 graphics.FillRectangle(&linGrBrush, 300, 50, 200, 100); |
Graphics graphics( pDC->m_hDC ); Image image(L"image.jpg"); TextureBrush tBrush(&image); Pen texturedPen(&tBrush, 10); graphics.DrawLine(&texturedPen, 25, 25, 325, 25); tBrush.SetWrapMode(WrapModeTileFlipXY); graphics.FillRectangle(&tBrush, 25, 100, 300, 200); |
如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。
现场直击|2021世界人工智能大会
直击5G创新地带,就在2021MWC上海
5G已至 转型当时——服务提供商如何把握转型的绝佳时机
寻找自己的Flag
华为开发者大会2020(Cloud)- 科技行者