C#Win8:将.PNG复制到Windows剪贴板;粘贴并保留透明性
作者:互联网
我的任务是捕获图像,将其复制到剪贴板,然后将其粘贴到下面的应用程序中.我必须能够支持几乎任何富文本字段,并且它必须保留透明性.我当前的解决方案首先呈现白色背景.这是我的代码:
RenderTargetBitmap包含要复制为.PNG的图像
public static void CopyImageToClipboard(RenderTargetBitmap b)
{
MemoryStream stream = new MemoryStream();
PngBitmapEncoder encoder = new PngBitmapEncoder();
encoder.Frames.Add(BitmapFrame.Create(b));
encoder.Save(stream);
Bitmap bmp = new Bitmap(stream);
Bitmap blank = new Bitmap(Convert.ToInt32(b.Width), Convert.ToInt32(b.Height));
Graphics g = Graphics.FromImage(blank);
g.Clear(System.Drawing.Color.White);
System.Drawing.Image img = System.Drawing.Image.FromStream(stream);
g.DrawImage(img, 0, 0, Convert.ToInt32(b.Width), Convert.ToInt32(b.Height));
Bitmap tempImage = new Bitmap(blank);
blank.Dispose();
img.Dispose();
bmp = new Bitmap(tempImage);
tempImage.Dispose();
System.Windows.Forms.Clipboard.SetImage(bmp);
stream.Dispose();
}
解决方法:
假设随机选择一种颜色作为背景
var background = Color.FromArgb(1, 255, 1, 255);
清除背景:
g.Clear(background); // instead of System.Drawing.Color.White
然后使该颜色透明:
Bitmap tempImage = new Bitmap(blank);
tempImage.MakeTransparent(background);
请注意,默认的透明颜色也很好用,不需要选择魔术色(检查是否需要Clear()背景,可能是-我没有检查-默认位图背景):
g.Clear(Color.Transparent);
// ...
tempImage.MakeTransparent();
编辑一些较旧的RTF控件版本无法处理透明度,因此您无能为力(AFAIK).半透明的解决方法(如果无法检测到粘贴目标的控件类并读取其背景颜色)是使用Color.FromArgb(254,255,255,255).不支持透明的白色,并且由于完全透明(由于MakeTransparent())而完全透明.
标签:transparency,png,clipboard,c 来源: https://codeday.me/bug/20191120/2047920.html