Using GDI+ to draw various colors:

brush = new SolidBrush(color);
graphics.FillRectangle(brush, x, y, width, height);

You'll notice that no opaque color shows properly on glass: alt text

How do i draw solid colors on glass?


You'll also notice that a fully opaque color is handled differently depending on what color it is:

  • opaque black: fully transparent
  • opaque color: partially transparent
  • opaque white: fully opaque

alt text

Can anyone point me to the documentation on the desktop compositor that explains how different colors are handled?


Update 3

You'll also notice that FillRectangle behaves differently than FillEllipse:

  • FillEllipse with an opaque color draws an opaque color
  • FillRectangle with an opaque color draws partially (or fully) transparent

alt text

Explanation for non-sensical behavior please.

Update 4

Alwayslearning suggested i change the compositing mode. From MSDN:

CompositingMode Enumeration

The CompositingMode enumeration specifies how rendered colors are combined with background colors. This enumeration is used by the Graphics::GetCompositingMode and 'Graphics::SetCompositingMode' methods of the Graphics class.

CompositingModeSourceOver

Specifies that when a color is rendered, it is blended with the background color. The blend is determined by the alpha component of the color being rendered.

CompositingModeSourceCopy

Specifies that when a color is rendered, it overwrites the background color. This mode cannot be used along with TextRenderingHintClearTypeGridFit.

From the description of CompositingModeSourceCopy, it sounds like it's not the option i want. From the limitations it imposes, it sounds like the option i want. And with composition, or transparency disabled it isn't the option i want, since it performs a SourceCopy, rather than SourceBlend:

alt text

Fortunately it's not an evil i have to contemplate because it doesn't solve my actual issue. After constructing my graphics object, i tried changed the compositing mode:

graphics = new Graphics(hDC);
graphics.SetCompositingMode(CompositingModeSourceCopy); //CompositingModeSourceCopy = 1

The result has no effect on the output:

alt text

Notes

  • Win32 native
  • not .NET (i.e. native)
  • not Winforms (i.e. native)
  • GDI+ (i.e. native)

See also

link|improve this question

73% accept rate
1  
Needs more freehand circles. – Matt Ball Nov 23 '10 at 16:28
I must be missing something because the answer that jumps out at me is, "Use 254 for the alpha value". Do you really need that extra 1/256th opacity? – Tergiver Nov 24 '10 at 20:37
What happens if you use ExtTextOut instead of FillRectangle? That is the 'normal' way to draw rectangles in GDI, not sure about GDI+. – Tergiver Nov 28 '10 at 2:01
What @Tergiver is referring to is that ExtTextOut has been used as a performance boost. It, along with PatBlt (was?) faster than FillRect. It doesn't require creation and management of a brush. – Ian Boyd Nov 30 '10 at 17:06
feedback

2 Answers

Seems to work OK for me. With the lack of a full code example I'm assuming you've got your compositing mode wrong.

public void RenderGdiPlus()
{
    List<string> colors = new List<string>(new string[] { "000000", "ff0000", "00ff00", "0000ff", "ffffff" });
    List<string> alphas = new List<string>(new string[] { "00", "01", "40", "80", "c0", "fe", "ff" });
    Bitmap bmp = new Bitmap(200, 300, System.Drawing.Imaging.PixelFormat.Format32bppArgb);

    Graphics graphics = Graphics.FromImage(bmp);
    graphics.CompositingQuality = System.Drawing.Drawing2D.CompositingQuality.HighQuality;
    graphics.PixelOffsetMode = System.Drawing.Drawing2D.PixelOffsetMode.None;
    graphics.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.None;

    graphics.CompositingMode = System.Drawing.Drawing2D.CompositingMode.SourceCopy;
    graphics.CompositingQuality = System.Drawing.Drawing2D.CompositingQuality.HighQuality;
    SolidBrush backBrush = new SolidBrush(Color.FromArgb(254, 131, 208, 129));
    graphics.FillRectangle(backBrush, 0, 0, 300, 300);

    graphics.CompositingMode = System.Drawing.Drawing2D.CompositingMode.SourceOver;
    Pen pen = new Pen(Color.Gray);
    for (int row = 0; row < alphas.Count; row++)
    {
        string alpha = alphas[row];
        for (int column=0; column<colors.Count; column++)
        {
            string color = "#" + alpha + colors[column];
            SolidBrush brush = new SolidBrush(ColorTranslator.FromHtml(color));
            graphics.DrawRectangle(pen, 40*column, 40*row, 32, 32);
            graphics.FillRectangle(brush, 1+40*column, 1+40*row, 31, 31);
        }
    }

    Graphics gr2 = Graphics.FromHwnd(this.Handle);
    gr2.CompositingMode = System.Drawing.Drawing2D.CompositingMode.SourceCopy;
    gr2.CompositingQuality = System.Drawing.Drawing2D.CompositingQuality.HighQuality;
    gr2.PixelOffsetMode = System.Drawing.Drawing2D.PixelOffsetMode.None;
    gr2.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.None;
    gr2.DrawImage(bmp, 0, 0);
}
link|improve this answer
Uh, the other obvious thing I should have mentioned... have you got your Transparency Key/Color set to #FF000000 ? – AlwaysLearning Nov 26 '10 at 3:13
There is no TransparencyKey property. i think you're referring to a the TransparencyKey property of a .NET WinForm. – Ian Boyd Nov 26 '10 at 15:26
As for compositing, i'm am using CompositingModeSourceOver (the default): Specifies that when a color is rendered, it is blended with the background color. The blend is determined by the alpha component of the color being rendered. – Ian Boyd Nov 26 '10 at 15:32
It's also noteworthy that i'm not rending to a bitmap, but rendering on a device context (blogs.msdn.com/b/oldnewthing/archive/2006/01/03/508694.aspx) . i'm curious to see your results if you render on the target DC, and remove the superfluious options and back-buffer. – Ian Boyd Nov 26 '10 at 15:33
feedback

I met the same issue with GDI.
GDI uses zero alpha channel value, so the simpliest solution is to fix alpha channel like this code does:

void fix_alpha_channel()
{
    std::vector<COLORREF> pixels(cx * cy);

    BITMAPINFOHEADER bmpInfo = {0};
    bmpInfo.biSize = sizeof(bmpInfo);
    bmpInfo.biWidth = cx;
    bmpInfo.biHeight = -int(cy);
    bmpInfo.biPlanes = 1;
    bmpInfo.biBitCount = 32;
    bmpInfo.biCompression = BI_RGB;

    GetDIBits(memDc, hBmp, 0, cy, &pixels[0], (LPBITMAPINFO)&bmpInfo, DIB_RGB_COLORS);

    std::for_each(pixels.begin(), pixels.end(), [](COLORREF& pixel){
        if(pixel != 0) // black pixels stay transparent
            pixel |= 0xFF000000; // set alpha channel to 100%
    });

    SetDIBits(memDc, hBmp, 0, cy, &pixels[0], (LPBITMAPINFO)&bmpInfo, DIB_RGB_COLORS);
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.