1

在 C# 中,在黑色背景(屏幕保护程序)下每 20 秒淡入和淡出图像的最佳(资源最少)方法是什么,持续时间为 1 秒?

(大约 350x130 像素的图像)。

我需要一个在一些低级计算机(xp)上运行的简单屏幕保护程序。

现在我正在对图片框使用这种方法,但它太慢了:

    private Image Lighter(Image imgLight, int level, int nRed, int nGreen, int nBlue)
    {
        Graphics graphics = Graphics.FromImage(imgLight);
        int conversion = (5 * (level - 50));
        Pen pLight = new Pen(Color.FromArgb(conversion, nRed,
                             nGreen, nBlue), imgLight.Width * 2);
        graphics.DrawLine(pLight, -1, -1, imgLight.Width, imgLight.Height);
        graphics.Save();
        graphics.Dispose();
        return imgLight;
    }
4

4 回答 4

3

您可能可以在 msdn 上使用此示例中的颜色矩阵

http://msdn.microsoft.com/en-us/library/w177ax15%28VS.71%29.aspx

于 2009-12-01T22:26:19.037 回答
1

您可以使用Bitmap.LockBits直接访问图像的内存,而不是使用 Pen 和 DrawLine() 方法。这是一个很好的解释它是如何工作的。

于 2009-12-01T22:31:11.667 回答
0

在您的表单上放置一个 Timer,然后在构造函数或 Form_Load 中编写

    timr.Interval = //whatever interval you want it to fire at;
    timr.Tick += FadeInAndOut;
    timr.Start();

添加私有方法

private void FadeInAndOut(object sender, EventArgs e)
{
    Opacity -= .01; 
    timr.Enabled = true;
    if (Opacity < .05) Opacity = 1.00;
}
于 2009-12-01T22:31:10.043 回答
0

这是我对此的看法

    private void animateImageOpacity(PictureBox control)
    {
        for(float i = 0F; i< 1F; i+=.10F)
        {
            control.Image = ChangeOpacity(itemIcon[selected], i);
            Thread.Sleep(40);
        }
    }

    public static Bitmap ChangeOpacity(Image img, float opacityvalue)
    {
        Bitmap bmp = new Bitmap(img.Width, img.Height); // Determining Width and Height of Source Image
        Graphics graphics = Graphics.FromImage(bmp);
        ColorMatrix colormatrix = new ColorMatrix {Matrix33 = opacityvalue};
        ImageAttributes imgAttribute = new ImageAttributes();
        imgAttribute.SetColorMatrix(colormatrix, ColorMatrixFlag.Default, ColorAdjustType.Bitmap);
        graphics.DrawImage(img, new Rectangle(0, 0, bmp.Width, bmp.Height), 0, 0, img.Width, img.Height, GraphicsUnit.Pixel, imgAttribute);
        graphics.Dispose();   // Releasing all resource used by graphics 
        return bmp;
    }

还建议创建另一个线程,因为这会冻结您的主线程。

于 2013-06-17T09:31:25.383 回答