0

基本上这就是我需要做的:
有一个文件夹说用产品进行修改,它在桌面上的外观发生变化,并且看起来是同一个文件夹图像,上面有一个锁。所以现在我需要用自动化来验证这一点。
所以我的方法是使用 C# .net 检索此图像,然后将其与预期的预存储图像文件进行比较。因此,有关如何检索此图像的任何帮助都会有很大帮助
不想使用任何第三方工具,因为它会增加维护

如果可能的话,任何其他更好的方法也会有所帮助。

4

1 回答 1

0

使用 C# 在 ASP.NET 图像控件中预览图像可帮助您从图像控件类型中获取图像

您可以通过以下方式保存图像

Image bitmap = Image.FromFile("C:\\MyFile.bmp");
bitmap.Save("C:\\MyFile2.bmp");

您应该能够使用Image 类中的Save 方法,并且如上所示。保存方法有 5 种不同的选项或重载。

  //Saves this Image  to the specified file or stream.
  img.Save(filePath);

  //Saves this image to the specified stream in the specified format.
  img.Save(Stream, ImageFormat);

  //Saves this Image to the specified file in the specified format.
  img.Save(String, ImageFormat);

  //Saves this image to the specified stream, with the specified encoder and image encoder parameters.
  img.Save(Stream, ImageCodecInfo, EncoderParameters);

  //Saves this Image to the specified file, with the specified encoder and image-encoder parameters.
  img.Save(String, ImageCodecInfo, EncoderParameters);
于 2013-06-19T04:12:08.700 回答