ImageComparer.Compare 方法 (Image, Image, Image%)
比较两个图像检查它们是否相同,并且计算两个图像之间的差异作为diff图像。
命名空间: Microsoft.VisualStudio.TestTools.UITesting
程序集: Microsoft.VisualStudio.TestTools.UITesting(在 Microsoft.VisualStudio.TestTools.UITesting.dll 中)
语法
声明
Public Shared Function Compare ( _
actualImage As Image, _
expectedImage As Image, _
<OutAttribute> ByRef diffImage As Image _
) As Boolean
public static bool Compare(
Image actualImage,
Image expectedImage,
out Image diffImage
)
public:
static bool Compare(
Image^ actualImage,
Image^ expectedImage,
[OutAttribute] Image^% diffImage
)
static member Compare :
actualImage:Image *
expectedImage:Image *
diffImage:Image byref -> bool
public static function Compare(
actualImage : Image,
expectedImage : Image,
diffImage : Image
) : boolean
参数
- actualImage
类型:System.Drawing.Image
实际图像。
- expectedImage
类型:System.Drawing.Image
预期的图像。
- diffImage
类型:System.Drawing.Image%
图像的 argb 值表示两个图像之间的差异。
返回值
类型:System.Boolean
如果两个图像相同,则为 true。
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。