Files
pdf/engine/include/pdfengine/image_encoding.hpp
T

17 lines
283 B
C++
Raw Normal View History

2026-08-01 16:19:11 +05:30
#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