本文整理汇总了C#中MatterHackers.Agg.Image.ImageBuffer.GetPixel方法的典型用法代码示例。如果您正苦于以下问题:C# ImageBuffer.GetPixel方法的具体用法?C# ImageBuffer.GetPixel怎么用?C# ImageBuffer.GetPixel使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MatterHackers.Agg.Image.ImageBuffer
的用法示例。
在下文中一共展示了ImageBuffer.GetPixel方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ClearAndCheckImage
private bool ClearAndCheckImage(ImageBuffer image, RGBA_Bytes color)
{
image.NewGraphics2D().Clear(color);
for (int y = 0; y < image.Height; y++)
{
for (int x = 0; x < image.Width; x++)
{
if (image.GetPixel(x, y) != color)
{
return false;
}
}
}
return true;
}
示例2: DEBUG_saveImageBuffer
private void DEBUG_saveImageBuffer(ImageBuffer buf)
{
int hash = 0;
var bounds = buf.GetBounds ();
System.Drawing.Bitmap bitmap = new System.Drawing.Bitmap (bounds.Width, bounds.Height, PixelFormat.Format32bppArgb);
for (int x = 0; x < bounds.Width; x++) {
for (int y = 0; y < bounds.Height; y++) {
var pcolor = buf.GetPixel (x, y);
var wcolor = Color.FromArgb (pcolor.alpha, pcolor.red, pcolor.green, pcolor.green);
hash += wcolor.ToArgb () ^ 0x1f2f019f;
hash <<= 1;
bitmap.SetPixel (x, y, wcolor);
}
}
string filename = String.Format (@"C:\tmp\masktest-{0}.bmp", hash);
if (!System.IO.File.Exists (filename)) {
bitmap.Save (filename, ImageFormat.Bmp);
}
}