()
| 26 | |
| 27 | |
| 28 | def test_bitmap_init_width_height_grey(): |
| 29 | bitmap = pycolmap.Bitmap(width=64, height=48, as_rgb=False) |
| 30 | assert bitmap.width == 64 |
| 31 | assert bitmap.height == 48 |
| 32 | assert bitmap.is_grey |
| 33 | |
| 34 | |
| 35 | def test_bitmap_init_with_linear_colorspace(): |