我的任务是捕获图像,将其复制到剪贴板,然后将其粘贴到下面的应用程序中.我必须能够支持几乎任何富文本字段,并且它必须保留透明性.我当前的解决方案首先呈现白色背景.这是我的代码:RenderTargetBitmap包含要复制为....
我的任务是捕获图像,将其复制到剪贴板,然后将其粘贴到下面的应用程序中.我必须能够支持几乎任何富文本字段,并且它必须保留透明性.我当前的解决方案首先呈现白色背景.这是我的代码:
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())而完全透明.
本文标题为:C#Win8:将.PNG复制到Windows剪贴板;粘贴并保留透明性
基础教程推荐
- Linux服务器部署.Net Core笔记:四、安装Supervisor进程守护 2023-09-26
- C#/VB.NET 在PDF中添加文件包(Portfolio)的方法 2023-03-03
- Unity 从Resources中动态加载Sprite图片的操作 2023-04-10
- 基于Unity3D实现3D迷宫小游戏的示例代码 2023-05-25
- C#中的延时函数sleep 2023-06-14
- c# – 如何使用Mono从Linux中捕获网络摄像头? 2023-09-19
- C#利用VS中插件打包并发布winfrom程序 2022-12-31
- C# 实现dataGridView选中一行右键出现菜单的示例代码 2023-03-10
- Unity3D在Preview中打印日志的方法 2023-01-28
- C# CultureInfo之常用InvariantCulture案例详解 2023-04-28