All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
FlateEncode.h
Go to the documentation of this file.
1 //---------------------------------------------------------------------------------------
2 // Copyright (c) 2001-2023 by Apryse Software Inc. All Rights Reserved.
3 // Consult legal.txt regarding legal and license information.
4 //---------------------------------------------------------------------------------------
5 #ifndef PDFTRON_H_CPPFiltersFlateEncode
6 #define PDFTRON_H_CPPFiltersFlateEncode
7 
8 #include <Filters/Filter.h>
9 #include <Common/Common.h>
10 #include <C/Filters/TRN_Filter.h>
11 
12 namespace pdftron {
13  namespace Filters {
14 
19 class FlateEncode : public Filter
20 {
21 public:
22 
33  FlateEncode (Filter input_filter, int compression_level = -1, size_t buf_sz = 256);
34 };
35 
36 #include <Impl/FlateEncode.inl>
37 
38  }; // namespace Filters
39 }; // namespace pdftron
40 
41 #endif // PDFTRON_H_CPPFiltersFlateEncode
FlateEncode(Filter input_filter, int compression_level=-1, size_t buf_sz=256)