0
kicks
Fading Images Together using C#
This article shows how to "fade" or "blend" together two images using C#. We use the System.Drawing package (mostly the Bitmap class) to extract the individual pixels of two images, and then perform a weighted average to construct a new image. The whole thing is wrapped up in a Windows Forms project. Source code and a Windows binary are provided.