devxlogo

Convert a color value to a gray scale

Convert a color value to a gray scale

When you have a 32-bit color value, you can convert it to a grey-scale – that is, you can determine how it would appear on a monochromatic display (more or less) using the following function:

Function GetGreyScale(ByVal lColor As Long)    lColor = 0.33 * (lColor Mod 256) + 0.59 * ((lColor  256) Mod 256) + 0.11 * _        ((lColor  65536) Mod 256)    GetGreyScale = RGB(lColor, lColor, lColor)End Function

devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist