xref: /haiku/src/add-ons/print/drivers/pcl6/PCL6Config.h (revision 1acbe440b8dd798953bec31d18ee589aa3f71b73)
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 //#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 
31