使用System.Drawing,我如何绘制一些模仿黄色突出显示标记效果的东西?

时间:2010-02-13 13:55:24

标签: .net gdi+ system.drawing

我希望黄色的“背后”显示出来。

编辑1:但是,如果我正在使用“白色”,我希望标记颜色保持其纯黄色。

编辑2:@Kevin的回答可能是正确的,我将其标记为正确,即使我没有编写代码。在我的代码中,我正在使用Color.FromArgb来解决@ Guffa的答案。

编辑3:我发布的代码效果不错。是的,减去蓝色是基本的想法,但你不能用高级API来做,而SetPixel太慢了。性能良好的解决方案使用Bitmap.LockBits,UnlockBits。

5 个答案:

答案 0 :(得分:9)

荧光笔是颜料,因此它基本上是减色的 - 你想把白色变成黄色,而不是黑色变成黄色。我不知道.NET,但你想要的是非默认的“混合模式”,特别是减去。具体来说,将混合模式设置为减去,将颜色设置为纯蓝色(要减去的颜色,保留黄色)。黑色将被单独留下,因为没有蓝色可以减去,白色会变黄。

不幸的是,许多现代绘图界面都忽略了alpha以外的混合模式,看起来这可能就是其中之一。如果您可以访问位图,则可以自己实现 - 获取每个像素值并将蓝色分量设置为零。或者,如果要突出显示的区域很复杂,则:复制图像,在副本中突出显示的区域上绘制黑色,然后将原始和蓝色通道中的红色和绿色通道组合到最终结果图片。

答案 1 :(得分:3)

您使用半透明颜色,例如50%alpha不透明度:

Color.FromArgb(128, Color.Yellow)

使用较低的alpha值会显示更多的背景。

答案 2 :(得分:2)

这是您需要的代码:

    protected override void OnPaint( PaintEventArgs e )
    {
        using ( var bmp = new Bitmap( 100, 100 ) )
        using ( var g = Graphics.FromImage( bmp ) )
        using ( var ia = new ImageAttributes() )
        {
            // 1. create a sample bitmap
            g.Clear( Color.White );
            var p = Point.Empty;
            foreach ( var color in new Color[] { Color.Black, Color.Gray, Color.LightBlue, Color.Green, Color.Red, Color.Magenta } )
                using ( var brush = new SolidBrush( color ) )
                {
                    g.DrawString( "Some sample text", SystemFonts.DefaultFont, brush, p );
                    p.Offset( 0, 16 );
                }
            // 2. transfer the bitmap on screen
            e.Graphics.DrawImage( bmp, Point.Empty );
            // 3. transfer a part of the bitmap on screen again, this time removing all blue
            ia.SetColorMatrix( new ColorMatrix( new float[][] {
                        new float[] {1, 0, 0, 0, 0},
                        new float[] {0, 1, 0, 0, 0},
                        new float[] {0, 0, 0, 0, 0},
                        new float[] {0, 0, 0, 1, 0},
                        new float[] {0, 0, 0, 0, 1}} ) );
            e.Graphics.DrawImage(
                bmp,
                new Rectangle( 30, 0, 40, 100 ),
                30, 0, 40, 100,
                GraphicsUnit.Pixel,
                ia );
        }
    }

答案 3 :(得分:1)

此代码有效。它消除了我想要黄色的每个RGB的蓝色分量。起初我尝试使用Bitmap.GetPixel / SetPixel,但这很痛苦。使用锁定/解锁来获取原始位的速度足够快。

                using (Bitmap tempBitmap = new Bitmap(bitmap.Width, bitmap.Height))
                {
                    using (Graphics tempG = Graphics.FromImage(tempBitmap))
                    {

                        tempG.DrawLines(penYellowHighlighter, stroke.points.ToArray());

                        // get the raw bits of the source and target and remove the blue from every
                        // bit of the target where there is a yellow bit of the source
                        Rectangle rect = new Rectangle(0, 0, bitmapWithStrokes.Width, bitmapWithStrokes.Height);

                        // lock
                        System.Drawing.Imaging.BitmapData sourceData =
                            tempBitmap.LockBits(
                                rect,
                                System.Drawing.Imaging.ImageLockMode.ReadOnly,
                                tempBitmap.PixelFormat);

                        System.Drawing.Imaging.BitmapData targetData =
                            bitmapWithStrokes.LockBits(
                                rect,
                                System.Drawing.Imaging.ImageLockMode.ReadWrite,
                                bitmapWithStrokes.PixelFormat);

                        // Get the address of the first line.
                        IntPtr sourcePtr = sourceData.Scan0;
                        IntPtr targetPtr = targetData.Scan0;

                        // Declare an array to hold the bytes of the bitmap.
                        int numberOfBytes = Math.Abs(sourceData.Stride) * tempBitmap.Height;

                        byte[] sourceRgbValues = new byte[numberOfBytes];
                        byte[] targetRgbValues = new byte[numberOfBytes];

                        // Copy the RGB values into the array.
                        System.Runtime.InteropServices.Marshal.Copy(sourcePtr, sourceRgbValues, 0, numberOfBytes);
                        System.Runtime.InteropServices.Marshal.Copy(targetPtr, targetRgbValues, 0, numberOfBytes);

                        for (int p = 0; p < numberOfBytes; p += 4)
                        {
                            // if the source's red is yellows's red
                            if (sourceRgbValues[p + 2] == yellowsRedComponent)
                            {
                                // wipe out the target's blue
                                targetRgbValues[p] = 0;
                            }
                        }

                        // Copy the RGB values back to the bitmap
                        System.Runtime.InteropServices.Marshal.Copy(targetRgbValues, 0, targetPtr, numberOfBytes);

                        // Unlock the bits.
                        tempBitmap.UnlockBits(sourceData);
                        bitmapWithStrokes.UnlockBits(targetData);

答案 4 :(得分:0)

尝试使用SolidBrush初始化的Color值,其alpha值小于255.这应该会创建一个您使用的颜色的半透明画笔。