在C#.net中使重叠的图片框透明

时间:2011-01-07 06:47:52

标签: c# winforms transparent

我有两个重叠的图片框。两个图片框的图像都有一些透明像素。我想通过重叠图片框的透明像素看到底部的图片框。

我尝试将两个图片框的背景颜色设置为透明。但它只是将图片框的背面颜色设置为表单的背景颜色。

3 个答案:

答案 0 :(得分:5)

显然,您使用的是Winforms。是的,通过绘制父像素来模拟透明度。哪个是表单,你只看到表单像素,堆叠效果不起作用。有一个KB article显示了解决方法。这很痛苦。另一种方法是不使用PictureBox控件,而只是在表单的Paint事件中绘制图像。

考虑WPF,它有一个非常不同的渲染模型,可以轻松支持透明度。

答案 1 :(得分:4)

该问题的解决方案可能各不相同,主要取决于您的技能和工作量取决于您正在处理的图像类型。例如,如果图像总是相同的分辨率,大小和重叠图像支持透明度,您可以尝试操纵两个Image对象并在另一个上绘制一个,然后在PictureBox中显示它。或者,如果您需要在应用的不同位置多次执行此操作,您甚至可以考虑创建自己的UserContriol

回答this question的代码,特别是方法ResizeImage,展示了如何创建调整大小,质量好的图片,所需的一切就是改变它。让它获得两个Images作为输入参数,并将其更改为将一个图像绘制在另一个图像上。

更改可能如下所示

    public static Bitmap CombineAndResizeTwoImages(Image image1, Image image2, int width, int height)
    {
        //a holder for the result
        Bitmap result = new Bitmap(width, height);

        //use a graphics object to draw the resized image into the bitmap
        using (Graphics graphics = Graphics.FromImage(result))
        {
            //set the resize quality modes to high quality
            graphics.CompositingQuality = System.Drawing.Drawing2D.CompositingQuality.HighQuality;
            graphics.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.HighQualityBicubic;
            graphics.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality;
            //draw the images into the target bitmap
            graphics.DrawImage(image1, 0, 0, result.Width, result.Height);
            graphics.DrawImage(image2, 0, 0, result.Width, result.Height);
        }

        //return the resulting bitmap
        return result;
    }

并使用它,例如,像这样:

  pictureBox1.Image = CombineAndResizeTwoImages(Image.FromFile("c:\\a.png"), Image.FromFile("c:\\b.png"), 100,100);

但这是唯一的例子,你必须根据自己的需要进行调整。 祝你好运。

答案 2 :(得分:4)

如果它是另一个PictureBox,你可以使用:

innerPictureBox.SendToBack(); innerPictureBox.Parent = outerPictureBox;