Gradient fill | CodeGuru

Gradient fill

Carrying out a gradient fill is something very simple to do. The following code carries this out (whether you require a palette or not). Aside from this function, you need to either have a CRect attribute in the class (m_rcClient), or set the width and height of the fill in the function itself. Also, a […]

Written By
CodeGuru Staff
CodeGuru Staff
Oct 4, 1998
1 minute read
CodeGuru content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More

Carrying out a gradient fill is something very simple to do. The following
code carries this out (whether you require a palette or not).

Aside from this function, you need to either have a CRect attribute in the
class (m_rcClient), or set the width and height of the fill
in the function itself. Also, a bool which indicates whether we need to use
a palette or not.

This example carries out a blue gradient fill. If you want to use other
colours, then you can do so easily for Red and Green (place the
calculation in the Red or Green component of the RGB call!).

It really depends how sophisticated you want to get, you typically need to
balance flexibility with speed when it comes to drawing.

void CImageWnd::DoGradientFill(CDC *pDC) const
{
	int nWidth = m_rcClient.Width();
	int nHeight = m_rcClient.Height();
	CRect rectangle;

	if(m_bUsePalette)
	{
		for(int i = 0; i < nHeight; ++i) // Fill in strip
		{
			rectangle.SetRect(0, i, nWidth, i + 1);

			CBrush brush;
			brush.CreateSolidBrush(RGB(0, 0, 255 - MulDiv(i,>252, nHeight)));
			pDC->FillRect(&rectangle, &brush);
		}
	}
	else
	{
		for(int i = 0; i < nHeight; ++i) // Fill in strip
		{
			rectangle.SetRect(0, i, nWidth, i + 1);
			pDC->FillSolidRect(&rectangle, RGB(0, 0, 255 ->MulDiv(i, 252, nHeight)));
		}
	}
}


CodeGuru Logo

CodeGuru covers topics related to Microsoft-related software development, mobile development, database management, and web application programming. In addition to tutorials and how-tos that teach programmers how to code in Microsoft-related languages and frameworks like C# and .Net, we also publish articles on software development tools, the latest in developer news, and advice for project managers. Cloud services such as Microsoft Azure and database options including SQL Server and MSSQL are also frequently covered.

Property of TechnologyAdvice. © 2026 TechnologyAdvice. All Rights Reserved

Advertiser Disclosure: Some of the products that appear on this site are from companies from which TechnologyAdvice receives compensation. This compensation may impact how and where products appear on this site including, for example, the order in which they appear. TechnologyAdvice does not include all companies or all types of products available in the marketplace.