1 /* 2 * PCL6Config.cpp 3 * Copyright 2005 Michael Pfeiffer. 4 */ 5 #ifndef _PCL6_CONFIG 6 #define _PCL6_CONFIG 7 8 // Compression method configuration 9 // Set to 0 to disable compression and to 1 to enable compression 10 // Note compression takes place only if it takes less space than uncompressed 11 // data! 12 13 // Run-Length-Encoding Compression 14 #define ENABLE_RLE_COMPRESSION 1 15 //#define ENABLE_RLE_COMPRESSION 0 16 17 // Delta Row Compression 18 #define ENABLE_DELTA_ROW_COMPRESSION 1 19 20 // Color depth for color printing. 21 // Use either 1 or 8. 22 // If 1 bit depth is used, the class Halftone is used for dithering 23 // otherwise dithering is not performed. 24 #define COLOR_DEPTH 1 25 //#define COLOR_DEPTH 8 26 27 #define DISPLAY_COMPRESSION_STATISTICS 0 28 29 #endif 30