17 lines
283 B
C++
17 lines
283 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <unordered_map>
|
|
|
|
namespace pdfengine {
|
|
|
|
struct ImageEncoding {
|
|
std::string filter;
|
|
int predictor = 1;
|
|
int columns = 0;
|
|
int colors = 1;
|
|
std::unordered_map<std::string, std::string> decodeParms;
|
|
};
|
|
|
|
} // namespace pdfengine
|