在C#中创建一个空的BitmapSource

时间:2010-08-26 09:40:45

标签: c# wpf bitmapsource

在c#中创建空(0x0 px或1x1 px和完全透明)BitmapSource实例的最快(几行代码和低资源使用)实例的方法是什么,当没有任何内容应该被渲染时使用。< / p>

6 个答案:

答案 0 :(得分:14)

感谢Arcutus hint我现在有了这个(工作正常):

var i = BitmapImage.Create(
    2,
    2,
    96,
    96,
    PixelFormats.Indexed1,
    new BitmapPalette(new List<Color> { Colors.Transparent }),
    new byte[] { 0, 0, 0, 0 },
    1);

如果我将这个图像缩小,我会得到一个ArgumentException。我不知道为什么我不能创建一个2x2px的小图像。

答案 1 :(得分:12)

使用Create方法。

从MSDN中窃取的示例::)

int width = 128;
int height = width;
int stride = width/8;
byte[] pixels = new byte[height*stride];

// Try creating a new image with a custom palette.
List<System.Windows.Media.Color> colors = new List<System.Windows.Media.Color>();
colors.Add(System.Windows.Media.Colors.Red);
colors.Add(System.Windows.Media.Colors.Blue);
colors.Add(System.Windows.Media.Colors.Green);
BitmapPalette myPalette = new BitmapPalette(colors);

// Creates a new empty image with the pre-defined palette
BitmapSource image = BitmapSource.Create(
                                         width, height,
                                         96, 96,
                                         PixelFormats.Indexed1,
                                         myPalette, 
                                         pixels, 
                                         stride);

答案 2 :(得分:3)

在不分配大型托管字节数组的情况下创建此类图像的方法是使用TransformedBitmap

var bmptmp = BitmapSource.Create(1,1,96,96,PixelFormats.Bgr24,null,new byte[3]{0,0,0},3);

var imgcreated = new TransformedBitmap(bmptmp, new ScaleTransform(width, height));

答案 3 :(得分:1)

最小的BitmapSource可以像这样生成:

    public static BitmapSource CreateEmptyBitmap()
    {
        return BitmapSource.Create(1, 1, 1, 1, PixelFormats.BlackWhite, null, new byte[] {0}, 1);
    }

答案 4 :(得分:0)

看看这个。它适用于任何Pixelformat

  public static BitmapSource CreateEmtpyBitmapSource(int width, int height, PixelFormat pixelFormat)
    {
        PixelFormat pf = pixelFormat;
        int rawStride = (width * pf.BitsPerPixel + 7) / 8;
        var rawImage = new byte[rawStride * height];
        var bitmap = BitmapSource.Create(width, height, 96, 96, pf, null, rawImage, rawStride);
        return bitmap;
    }

答案 5 :(得分:0)

另一种方法是创建从BitmapSource派生的BitmapImage类的实例:

BitmapSource emptySource = new BitmapImage();