The MASM Forum

General => The Laboratory => Topic started by: NoCforMe on August 27, 2023, 02:50:22 PM

Title: Generating gradients programmatically
Post by: NoCforMe on August 27, 2023, 02:50:22 PM
This might be useful to somebody: a simply way to generate gradients that can be used as window backgrounds or for other graphic purposes. Demo program attached. The top part shows windows of various sizes with the same gradient to see how that appears.

The nice thing is that all these can be created without any fancy-schmancy techniques, no lookup tables, just looping through a 256-entry list of RGB values. (The code to render the gradient in a window uses a very small number of FPU instructions, otherwise very straightforward.)
Title: Re: Generating gradients programmatically
Post by: Biterider on August 27, 2023, 03:26:29 PM
Hi NoCforMe
Really nice and useful! 
Looking through the code, I noticed the good coding style.
 
Thank you for sharing  :thumbsup:

Biterider
Title: Re: Generating gradients programmatically
Post by: fearless on August 27, 2023, 04:56:14 PM
Here is an example using ModernUI library. The background gradient is painted with a function called MUIGDIPaintGradient, which itself is a wrapper for GradientFill which is located in the msimg32.lib. The dwColorRefGradientFrom and dwColorRefGradientTo COLORREF values can be changed and recompiled or alternatively they could be updated at runtime to change the background on the fly. The orientation of the gradient can be adjusted: horizontal or vertical.

This site has some more information on gradients: http://www.flounder.com/gradientfiller.htm - but the app requires some older mfc dll to run.

I dont know if there is a way to change the angle of the gradient, i guess using the third vertex (from looking at that flounder site) is the main way, or perhaps some transform operation to rotate the dc being painted to before the blt call?

I included the ModernUI include and lib for the example.

(https://i.postimg.cc/ykXRj92Z/screenshot-191.png) (https://postimg.cc/ykXRj92Z)

GradientBackground.zip
Title: Re: Generating gradients programmatically
Post by: NoCforMe on August 28, 2023, 06:20:59 AM
New version attached to original post (https://masm32.com/board/index.php?msg=123047). Added 3 colors, colors now arranged in more or less rainbow order. (Remember "Roy G. Biv"?)

Bonus feature: park your cursor over the combobox and spin your mouse wheel, watch the colors change. This was not intentional on my part ...
Title: 45º gradients
Post by: NoCforMe on August 28, 2023, 12:51:12 PM
It's pretty easy generating 45º gradients. Same basic technique (256-element gradient list), just with a couple more loops. Probably you could generate other angles using a little trig.

I was a little surprised that the result was as smooth as it is; I expected maybe some blotches or other artifacts. You can see some very faint diagonal striping, but overall it looks pretty damn good. Apparently LineTo() is a pretty well worked-out piece of code.
Title: Re: Generating gradients programmatically
Post by: daydreamer on August 28, 2023, 11:40:31 PM
Quote from: NoCforMe on August 28, 2023, 12:51:12 PMIt's pretty easy generating 45º gradients. Same basic technique (256-element gradient list), just with a couple more loops. Probably you could generate other angles using a little trig.
great NoCforMe :thumbsup:
with fpu its simple using fsincos to generate gradient any angle
isometric view is simplified sine 30 degrees=0.5 :easy bitshift on old slow nonfpu hardware
Title: Re: Generating gradients programmatically
Post by: LiaoMi on September 03, 2023, 02:12:33 AM
Another example...