Returns storage required by pixel array, given ImageInfo dimensions, and ColorType. Uses #getMinRowBytes() to compute bytes for pixel row. Returns zero if height is zero. @return least memory required by pixel buffer
()
| 238 | * @return least memory required by pixel buffer |
| 239 | */ |
| 240 | public long computeMinByteSize() { |
| 241 | return computeByteSize(getMinRowBytes()); |
| 242 | } |
| 243 | |
| 244 | /** |
| 245 | * Returns true if rowBytes is valid for this ImageInfo. |
nothing calls this directly
no test coverage detected