What's an efficient way to tell if a bitmap is entirely black?

前端 未结 12 940
清酒与你
清酒与你 2021-02-05 05:40

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).

12条回答
  •  旧巷少年郎
    2021-02-05 06:17

    Just some random thoughts:

    • Maybe you could apply a ColorMatrix to the original bitmap (to completely turn it to black). Then compare the result with the original.
    • Or create a bitmap of identical size (filled with pure black) and then compare to the original bitmap.

提交回复
热议问题