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