简体   繁体   English

创建BitmapImage并将其应用于特定的颜色

[英]Create BitmapImage and apply to it a specific Color

I got stuck how to create BitmapImage based on some color value ? 我遇到了如何基于某些颜色值创建BitmapImage

For example I have string " Black " so I need black BitmapImage . 例如,我有字符串“ 黑色 ”所以我需要黑色BitmapImage

How it could be done? 怎么做?

Thank you! 谢谢!

-- UPDATES (I put this code for @StephenChung ) - 更新(我把这段代码用于@StephenChung

The idea is to do Grid with any opacity and don't apply opacity to its children. 我们的想法是使用任何不透明度执行Grid,并且不对其子项应用不透明度。 So I create an image by ANY color I need and apply opacity for it. 所以我用我需要的任何颜色创建一个图像并为它应用不透明度。

BitmapSource bs = CreateBitmapSource(GetBackgroundColorValue());
// and here I use method of @StaWho CreateBitmapSource()
ImageBrush ib2 = new ImageBrush(bs);
ib2.Opacity = Opacity;
ib2.Stretch = Stretch.Fill;
RootGrid.Background = ib2;

You can create ImageBrush from BitmapSource : 您可以从BitmapSource创建ImageBrush

    private BitmapSource CreateBitmapSource(System.Windows.Media.Color color)
    {
        int width = 128;
        int height = width;
        int stride = width / 8;
        byte[] pixels = new byte[height * stride];

        List<System.Windows.Media.Color> colors = new List<System.Windows.Media.Color>();
        colors.Add(color);
        BitmapPalette myPalette = new BitmapPalette(colors);

        BitmapSource image = BitmapSource.Create(
            width,
            height,
            96,
            96,
            PixelFormats.Indexed1,
            myPalette,
            pixels,
            stride);

        return image;
    }

Example: 例:

System.Drawing.Bitmap flag = new System.Drawing.Bitmap(10, 10);
for( int x = 0; x <  flag.Height; ++x )
    for( int y = 0; y < flag.Width; ++y )
        flag.SetPixel(x, y, Color.Black);
for( int x = 0; x < flag.Height; ++x )
    flag.SetPixel(x, x, Color.Black);

and the conversion: 和转换:

private BitmapImage Bitmap2BitmapImage(Bitmap bitmap) 
{ 
    using (MemoryStream ms = new MemoryStream()) 
    { 
        bitmap.Save(ms, ImageFormat.Png); 
        ms.Position = 0; 
        BitmapImage bi = new BitmapImage(); 
        bi.BeginInit(); 
        bi.StreamSource = ms; 
        bi.EndInit(); 

        return bi; 
    } 
} 

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM