We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c628be3 commit 87a25c5Copy full SHA for 87a25c5
siffreadermodule/include/siffparams/siffparams.hpp
@@ -3,16 +3,16 @@
3
4
#define LITTLEENDIAN "II"
5
#define BIGENDIAN "MM"
6
-constexpr uint16_t TIFFID = 42;
7
-constexpr uint16_t BIGTIFFID = 43;
8
-constexpr uint32_t MAGICNUMBER = 117637889; // identifies this as a scanimage file
9
-constexpr uint32_t SI2019 = 4; // identifies this as 2019 or later
10
-
11
#include <cstdint>
12
#include <stdlib.h>
13
#include <string>
14
#include <vector>
15
+constexpr uint16_t TIFFID = 42;
+constexpr uint16_t BIGTIFFID = 43;
+constexpr uint32_t MAGICNUMBER = 117637889; // identifies this as a scanimage file
+constexpr uint32_t SI2019 = 4; // identifies this as 2019 or later
+
16
typedef struct SiffParams{
17
std::string filename;
18
bool little;
0 commit comments