-
Notifications
You must be signed in to change notification settings - Fork 7
/
bitblt_g4.c
341 lines (276 loc) · 7.03 KB
/
bitblt_g4.c
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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
/*
* tumble: build a PDF file from image files
*
* G4 compression
* Copyright 2003, 2017 Eric Smith <[email protected]>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation. Note that permission is
* not granted to redistribute this program under the terms of any
* other version of the General Public License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA
*
* 2007-06-20 [JDB] Fixed a bug wherein "g4_get_pixel" is called with pixel
* index == width, causing an index off the end of the array
* if width % BITS_PER_WORD == 0.
*/
#define G4_DEBUG 0
#include <stdbool.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "bitblt.h"
#include "bitblt_tables.h"
#include "pdf_util.h"
#include "g4_tables.h"
#define BIT_BUF_SIZE 4096
struct bit_buffer
{
FILE *f;
uint32_t byte_idx; /* index to next byte position in data buffer */
uint32_t bit_idx; /* one greater than the next bit position in data buffer,
8 = MSB, 1 = LSB */
uint8_t data [BIT_BUF_SIZE];
};
static void init_bit_buffer (struct bit_buffer *buf)
{
buf->byte_idx = 0;
buf->bit_idx = 8;
memset (& buf->data [0], 0, BIT_BUF_SIZE);
}
static void flush_bits (struct bit_buffer *buf)
{
size_t s;
if (buf->bit_idx != 8)
{
buf->byte_idx++;
buf->bit_idx = 8;
}
s = fwrite (& buf->data [0], 1, buf->byte_idx, buf->f);
/* $$$ should check result */
init_bit_buffer (buf);
}
static void advance_byte (struct bit_buffer *buf)
{
buf->byte_idx++;
buf->bit_idx = 8;
if (buf->byte_idx == BIT_BUF_SIZE)
flush_bits (buf);
}
static void write_bits (struct bit_buffer *buf,
uint32_t count,
uint32_t bits)
{
while (count > buf->bit_idx)
{
buf->data [buf->byte_idx] |= bits >> (count - buf->bit_idx);
count -= buf->bit_idx;
advance_byte (buf);
}
bits &= ((1 << count) - 1);
buf->data [buf->byte_idx] |= bits << (buf->bit_idx - count);
buf->bit_idx -= count;
if (buf->bit_idx == 0)
advance_byte (buf);
}
static void g4_encode_horizontal_run (struct bit_buffer *buf,
bool black,
uint32_t run_length)
{
uint32_t i;
while (run_length >= 2560)
{
write_bits (buf, 12, 0x01f);
run_length -= 2560;
}
if (run_length >= 1792)
{
i = (run_length - 1792) >> 6;
write_bits (buf,
g4_long_makeup_code [i].count,
g4_long_makeup_code [i].bits);
run_length -= (1792 + (i << 6));
}
else if (run_length >= 64)
{
i = (run_length >> 6) - 1;
write_bits (buf,
g4_makeup_code [black] [i].count,
g4_makeup_code [black] [i].bits);
run_length -= (i + 1) << 6;
}
write_bits (buf,
g4_h_code [black] [run_length].count,
g4_h_code [black] [run_length].bits);
}
static inline int g4_get_pixel (uint8_t *buf, uint32_t x)
{
return ((buf [x >> 3] >> (x & 7)) & 1);
}
#define not_aligned(p) (((word_t) p) & (sizeof (word_t) - 1))
static uint32_t g4_find_pixel (uint8_t *buf,
uint32_t pos,
uint32_t width,
bool color)
{
uint8_t *p = buf + pos / 8;
int bit = pos & 7;
uint8_t *max_p = buf + (width - 1) / 8;
uint8_t d;
/* check first byte (may be partial) */
d = *p;
if (! color)
d = ~d;
bit += rle_tab [bit][d];
if (bit < 8)
goto done;
p++;
/* check individual bytes until we hit word alignment */
while ((p <= max_p) && not_aligned (p))
{
d = *p;
if (! color)
d = ~d;
if (d != 0)
goto found;
p++;
}
/* check aligned words in middle */
while ((p <= (max_p - sizeof (word_t))))
{
word_t w = *((word_t *) p);
if (! color)
w = ~w;
if (w != 0)
break;
p += sizeof (word_t);
}
/* check trailing bytes */
while (p <= max_p)
{
d = *p;
if (! color)
d = ~d;
if (d)
goto found;
p++;
}
goto not_found;
found:
bit = rle_tab [0][d];
done:
pos = ((p - buf) << 3) + bit;
if (pos < width)
return (pos);
not_found:
return (width);
}
#define absdiff(a, b) ((a) < (b) ? (b)-(a) : (a) - (b))
static void g4_encode_row (struct bit_buffer *buf,
uint32_t width,
uint8_t *ref,
uint8_t *row)
{
uint32_t a0, a1, a2;
uint32_t b1, b2;
bool a0_c;
a0 = 0;
a0_c = 0;
a1 = g4_find_pixel (row, 0, width, 1);
b1 = g4_find_pixel (ref, 0, width, 1);
#if (G4_DEBUG & 1)
fprintf (stderr, "start of row\n");
if ((a1 != width) || (b1 != width))
{
fprintf (stderr, "a1 = %u, b1 = %u\n", a1, b1);
}
#endif
while (a0 < width)
{
b2 = g4_find_pixel (ref, b1 + 1, width, ! g4_get_pixel (ref, b1));
if (b2 < a1)
{
/* pass mode - 0001 */
write_bits (buf, 4, 0x1);
a0 = b2;
#if (G4_DEBUG & 1)
fprintf (stderr, "pass\n");
#endif
}
else if (absdiff(a1, b1) <= 3)
{
/* vertical mode */
write_bits (buf,
g4_vert_code [3 + a1 - b1].count,
g4_vert_code [3 + a1 - b1].bits);
a0 = a1;
#if (G4_DEBUG & 1)
fprintf (stderr, "vertical %d\n", a1 - b1);
#endif
}
else
{
/* horizontal mode - 001 */
a2 = g4_find_pixel (row, a1 + 1, width, a0_c);
write_bits (buf, 3, 0x1);
g4_encode_horizontal_run (buf, a0_c, a1 - a0);
g4_encode_horizontal_run (buf, ! a0_c, a2 - a1);
#if (G4_DEBUG & 1)
fprintf (stderr, "horizontal %d %s, %d %s\n",
a1 - a0, a0_c ? "black" : "white",
a2 - a1, a0_c ? "white" : "black");
#endif
a0 = a2;
}
if (a0 >= width)
break;;
a0_c = g4_get_pixel (row, a0);
a1 = g4_find_pixel (row, a0 + 1, width, ! a0_c);
b1 = g4_find_pixel (ref, a0 + 1, width, ! g4_get_pixel (ref, a0));
if (g4_get_pixel (ref, b1) == a0_c)
b1 = g4_find_pixel (ref, b1 + 1, width, ! a0_c);
#if (G4_DEBUG & 1)
fprintf (stderr, "a1 = %u, b1 = %u\n", a1, b1);
#endif
}
}
void bitblt_write_g4 (Bitmap *bitmap, FILE *f)
{
uint32_t width = bitmap->rect.max.x - bitmap->rect.min.x;
uint32_t row;
struct bit_buffer bb;
word_t *temp_buffer;
word_t *cur_line;
word_t *ref_line; /* reference (previous) row */
temp_buffer = pdf_calloc (width / BITS_PER_WORD + 1,
sizeof (word_t));
cur_line = bitmap->bits;
ref_line = temp_buffer;
init_bit_buffer (& bb);
bb.f = f;
for (row = bitmap->rect.min.y;
row < bitmap->rect.max.y;
row++)
{
g4_encode_row (& bb,
width,
(uint8_t *) ref_line,
(uint8_t *) cur_line);
ref_line = cur_line;
cur_line += bitmap->row_words;
}
/* write EOFB code */
write_bits (& bb, 24, 0x001001);
flush_bits (& bb);
free (temp_buffer);
}