在C#winform应用程序中。我正在编写一个剪贴板日志管理器,将文本记录到日志文件中(每次按下Ctrl + c / x时,复制/剪切的文本都会附加到文件中) 我也为图像做了同样的事情,也就是说,如果按“prtScreen”,你拍摄的屏幕截图也将转到文件夹。
我是通过使用计时器做到的,在里面我有一些看起来像这样的东西:
if (Clipboard.ContainsImage())
{
if (IsClipboardUpdated())
{
LogData();
UpdateLastClipboardData();
}
}
这是其余方法的样子:
public void UpdateLastClipboardData()
{
// ... other updates
LastClipboardImage = Clipboard.GetImage();
}
// This is how I determine if there's a new image in the clipboard...
public bool IsClipboardUpdated()
{
return (LastClipboardImage != Clipboard.GetImage());
}
public void LogData()
{
Clipboard.GetImage().Save(ImagesLogFolder + "\\Image" + now_hours + "_" + now_mins + "_" + now_secs + ".jpg");
}
问题是:在update方法中,“LastClipboardImage!= Clipboard.GetImage()”总是返回true!
我甚至在更新方法中执行了以下操作:
Image img1 = Clipboard.GetImage();
Image img2 = Clipboard.GetImage();
Image img3 = img2;
bool b1 = img1 == img2; // this returned false. WHY??
bool b2 = img3 == img2; // this returned true. Makes sense.
请帮助,比较不起作用......为什么?
答案 0 :(得分:1)
一点点测试。为同一图像调用两次GetImage方法
void Main()
{
Image bmp1 = Clipboard.GetImage();
Image bmp2 = Clipboard.GetImage();
if(bmp1 != null && bmp1 == bmp2)
Console.WriteLine("True");
else
Console.WriteLine("False");
}
它总是返回false。因此,每次调用Clipboard.GetImage()时,您都会得到一个不同的图像实例,因此您无法使用简单的== operator
您正在比较Image对象的两个不同实例,当然它们并不相同。
如果您真的想要将图像与像素级别进行比较,则需要更具侵入性(且性能更苛刻的方法)
bool ImagesAreDifferent(Image img1, Image img2)
{
Bitmap bmp1 = new Bitmap(img1);
Bitmap bmp2 = new Bitmap(img2);
bool different = false;
if (bmp1.Width == bmp2.Width && bmp1.Height == bmp2.Height)
{
for (int i = 0; i < bmp1.Width; i++)
{
for (int j = 0; j < bmp1.Height; j++)
{
Color col1 = bmp1.GetPixel(i, j);
Color col2 = bmp2.GetPixel(i, j);
if (col1 != col2)
{
i = bmp1.Width + 1;
different = true;
break;
}
}
}
}
return different;
}
请注意这是如何实现的,因为Color结构定义了一个Equality operator来检查两种颜色之间的颜色RGB值是否相同
答案 1 :(得分:0)
Image
检查与Object.equals
的相等性,Clipboard.GetImage
测试引用与引用类型的相等性,而不是语义相等性。这就是img2 == img3
为true
的原因,因为您之前已将img2
的引用复制到img3
。但是,对于img1
和img2
,您调用{{3}}来构造新的图像对象。
如果您确实想测试两个图像对象是否包含相同的数据,则需要编写自己的方法 - 如果您不想继承Image
,可能需要使用扩展方法。
public static class ImageExtensions
{
public static bool MyEquals(this Image x, Image y)
{
// compute and return your definition of equality here
}
}
请注意,==
运算符不会自动调用此方法,您必须检查与Image.MyEquals
的相等性。
答案 2 :(得分:0)
我认为不是比较图像,而是可以改变程序逻辑来克服这个问题。 如何捕获添加到剪贴板的新项目的事件并写入日志?
您可以尝试从以下链接
编写示例代码http://www.codeproject.com/Tips/467361/Using-Clipboard-Csharp-4-0-Wrapper-inside
// Use the "ClipboardManager" to manage in a more comprehensive the clipboard
// I assume that "this" is a Form
ClipboardManager manager = new ClipboardManager(this);
// Use "All" to handle all kinds of objects from the clipboard
// otherwise use "Files", "Image" or "Text"
manager.Type = ClipboardManager.CheckType.All;
// Use events to manage the objects in the clipboard
manager.OnNewFilesFound += (sender, eventArg) =>
{
foreach (String item in eventArg)
{
Console.WriteLine("New file found in clipboard : {0}", item);
}
};
manager.OnNewImageFound += (sender, eventArg) =>
{
Console.WriteLine("New image found in clipboard -> Width: {0} , Height: {1}",
eventArg.Width, eventArg.Height);
};
manager.OnNewTextFound += (sender, eventArg) =>
{
Console.WriteLine("New text found in clipboard : {0}", eventArg);
};
// Use the method "StartChecking" to start capturing objects in the clipboard
manager.StartChecking();
// Close the capturing
manager.Dispose();