Returns minimum bytes per row, computed from pixel getWidth() and ColorType, which specifies getBytesPerPixel(). Bitmap maximum value for row bytes must fit in 31 bits.
()
| 193 | * in 31 bits. |
| 194 | */ |
| 195 | public long getMinRowBytes() { |
| 196 | return _width * getBytesPerPixel(); |
| 197 | } |
| 198 | |
| 199 | /** |
| 200 | * <p>Returns byte offset of pixel from pixel base address.</p> |
no test coverage detected