I\'m wondering if there\'s a super-efficient way of confirming that an Image object references an entirely black image, so every pixel within the bitmap is ARGB(255, 0, 0, 0).>
Lock the bitmap into memory and scan it with bitwise operations. Don't use GetPixel and the like; that's slow.
GetPixel