libimgdoc2
Loading...
Searching...
No Matches
DataTypes.h
1// SPDX-FileCopyrightText: 2023 Carl Zeiss Microscopy GmbH
2//
3// SPDX-License-Identifier: MIT
4
5#pragma once
6
7namespace imgdoc2
8{
10 enum class DataTypes : std::uint8_t
11 {
14 ZERO = 0,
15
18 UNCOMPRESSED_BITMAP = 1,
19
21 JPGXRCOMPRESSED_BITMAP = 2,
22
24 ZSTD0COMPRESSED_BITMAP = 3,
25
28 ZSTD1COMPRESSED_BITMAP = 4,
29
30 UNCOMPRESSED_BRICK = 32,
31 CUSTOM = 255
32 };
33
34}