1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210
|
/* Copyright (C) 1992, 1994 Aladdin Enterprises. All rights reserved.
This file is part of GNU Ghostscript.
GNU Ghostscript is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY. No author or distributor accepts responsibility to
anyone for the consequences of using it or for whether it serves any
particular purpose or works at all, unless he says so in writing. Refer
to the GNU Ghostscript General Public License for full details.
*/
/* gdevpcl.c */
/* Utilities for PCL printers */
#include "gdevprn.h"
#include "gdevpcl.h"
/* ------ Get paper size ------ */
/* Get the paper size code, based on width and height. */
int
gdev_pcl_paper_size(gx_device *dev)
{ float height_inches = dev->height / dev->y_pixels_per_inch;
return
(height_inches >= 44.4 ? PAPER_SIZE_A0 :
height_inches >= 32.0 ? PAPER_SIZE_A1 :
height_inches >= 22.2 ? PAPER_SIZE_A2 :
height_inches >= 15.9 ? PAPER_SIZE_A3 :
height_inches >= 11.8 ? PAPER_SIZE_LEGAL :
height_inches >= 11.1 ? PAPER_SIZE_A4 :
PAPER_SIZE_LETTER);
}
/* ------ Color mapping ------ */
/* The PaintJet and DeskJet 500C use additive colors in separate planes. */
/* We only keep one bit of color, with 1 = R, 2 = G, 4 = B. */
/* Because the buffering routines assume 0 = white, */
/* we complement all the color components. */
#define cv_shift (sizeof(gx_color_value) * 8 - 1)
/* Map an RGB color to a printer color. */
gx_color_index
gdev_pcl_3bit_map_rgb_color(gx_device *dev,
gx_color_value r, gx_color_value g, gx_color_value b)
{ return (((b >> cv_shift) << 2) + ((g >> cv_shift) << 1) + (r >> cv_shift)) ^ 7;
}
/* Map the printer color back to RGB. */
int
gdev_pcl_3bit_map_color_rgb(gx_device *dev, gx_color_index color,
gx_color_value prgb[3])
{ ushort cc = (ushort)color ^ 7;
prgb[0] = -(cc & 1);
prgb[1] = -((cc >> 1) & 1);
prgb[2] = -(cc >> 2);
return 0;
}
/* ------ Compression ------ */
/*
* Mode 2 Row compression routine for the HP DeskJet & LaserJet IIp.
* Compresses data from row up to end_row, storing the result
* starting at compressed. Returns the number of bytes stored.
* Runs of K<=127 literal bytes are encoded as K-1 followed by
* the bytes; runs of 2<=K<=127 identical bytes are encoded as
* 257-K followed by the byte.
* In the worst case, the result is N+(N/127)+1 bytes long,
* where N is the original byte count (end_row - row).
* To speed up the search, we examine an entire word at a time.
* We will miss a few blocks of identical bytes; tant pis.
*/
int
gdev_pcl_mode2compress(const word *row, const word *end_row, byte *compressed)
{ register const word *exam = row; /* word being examined in the row to compress */
register byte *cptr = compressed; /* output pointer into compressed bytes */
while ( exam < end_row )
{ /* Search ahead in the input looking for a run */
/* of at least 4 identical bytes. */
const byte *compr = (const byte *)exam;
const byte *end_dis;
const word *next;
register word test = *exam;
while ( ((test << 8) ^ test) > 0xff )
{ if ( ++exam >= end_row )
break;
test = *exam;
}
/* Find out how long the run is */
end_dis = (const byte *)exam;
if ( exam == end_row ) /* no run */
{ /* See if any of the last 3 "dissimilar" bytes are 0. */
if ( end_dis > compr && end_dis[-1] == 0 )
{ if ( end_dis[-2] != 0 ) end_dis--;
else if ( end_dis[-3] != 0 ) end_dis -= 2;
else end_dis -= 3;
}
next = --end_row;
}
else
{ next = exam + 1;
while ( next < end_row && *next == test )
next++;
/* See if any of the last 3 "dissimilar" bytes */
/* are the same as the repeated byte. */
if ( end_dis > compr && end_dis[-1] == (byte)test )
{ if ( end_dis[-2] != (byte)test ) end_dis--;
else if ( end_dis[-3] != (byte)test ) end_dis -= 2;
else end_dis -= 3;
}
}
/* Now [compr..end_dis) should be encoded as dissimilar, */
/* and [end_dis..next) should be encoded as similar. */
/* Note that either of these ranges may be empty. */
for ( ; ; )
{ /* Encode up to 127 dissimilar bytes */
uint count = end_dis - compr; /* uint for faster switch */
switch ( count )
{ /* Use memcpy only if it's worthwhile. */
case 6: cptr[6] = compr[5];
case 5: cptr[5] = compr[4];
case 4: cptr[4] = compr[3];
case 3: cptr[3] = compr[2];
case 2: cptr[2] = compr[1];
case 1: cptr[1] = compr[0];
*cptr = count - 1;
cptr += count + 1;
case 0: /* all done */
break;
default:
if ( count > 127 ) count = 127;
*cptr++ = count - 1;
memcpy(cptr, compr, count);
cptr += count, compr += count;
continue;
}
break;
}
{ /* Encode up to 127 similar bytes. */
/* Note that count may be <0 at end of row. */
int count = (const byte *)next - end_dis;
while ( count > 0 )
{ int this = (count > 127 ? 127 : count);
*cptr++ = 257 - this;
*cptr++ = (byte)test;
count -= this;
}
exam = next;
}
}
return (cptr - compressed);
}
/*
* Mode 3 compression routine for the HP LaserJet III family.
* Compresses bytecount bytes starting at current, storing the result
* in compressed, comparing against and updating previous.
* Returns the number of bytes stored. In the worst case,
* the number of bytes is bytecount+(bytecount/8)+1.
*/
int
gdev_pcl_mode3compress(int bytecount, const byte *current, byte *previous, byte *compressed)
{ register const byte *cur = current;
register byte *prev = previous;
register byte *out = compressed;
const byte *end = current + bytecount;
while ( cur < end )
{ /* Detect a maximum run of unchanged bytes. */
const byte *run = cur;
register const byte *diff;
const byte *stop;
int offset, cbyte;
while ( cur < end && *cur == *prev )
{ cur++, prev++;
}
if ( cur == end ) break; /* rest of row is unchanged */
/* Detect a run of up to 8 changed bytes. */
/* We know that *cur != *prev. */
diff = cur;
stop = (end - cur > 8 ? cur + 8 : end);
do
{ *prev++ = *cur++;
}
while ( cur < stop && *cur != *prev );
/* Now [run..diff) are unchanged, and */
/* [diff..cur) are changed. */
/* Generate the command byte(s). */
offset = diff - run;
cbyte = (cur - diff - 1) << 5;
if ( offset < 31 )
*out++ = cbyte + offset;
else
{ *out++ = cbyte + 31;
offset -= 31;
while ( offset >= 255 )
*out++ = 255, offset -= 255;
*out++ = offset;
}
/* Copy the changed data. */
while ( diff < cur )
*out++ = *diff++;
}
return out - compressed;
}
|