about summary refs log tree commit diff
path: root/converter/other/pnmtorast.c
blob: 14c0be0a0ac6e96778e93f0762b7e64f4b26ff42 (plain) (blame)
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
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
/* pnmtorast.c - read a portable anymap and produce a Sun rasterfile
**
** Copyright (C) 1989, 1991 by Jef Poskanzer.
**
** Permission to use, copy, modify, and distribute this software and its
** documentation for any purpose and without fee is hereby granted, provided
** that the above copyright notice appear in all copies and that both that
** copyright notice and this permission notice appear in supporting
** documentation.  This software is provided "as is" without express or
** implied warranty.
*/

#include "pnm.h"
#include "rast.h"
#include "mallocvar.h"

#define MAXCOLORS 256



static colormap_t *
allocPrColormap(void) {

    colormap_t * prColormapP;

    MALLOCVAR(prColormapP);
    if (prColormapP == NULL)
        pm_error("out of memory");
    prColormapP->type = RMT_EQUAL_RGB;
    prColormapP->length = MAXCOLORS;
    MALLOCARRAY(prColormapP->map[0], MAXCOLORS);
    MALLOCARRAY(prColormapP->map[1], MAXCOLORS);
    MALLOCARRAY(prColormapP->map[2], MAXCOLORS);
    if (prColormapP->map[0] == NULL ||
        prColormapP->map[1] == NULL ||
        prColormapP->map[2] == NULL)
        pm_error("out of memory");

    return prColormapP;
}



static colormap_t *
makePrColormap(colorhist_vector const chv,
               unsigned int     const colors) {

    colormap_t * prColormapP;
    unsigned int i;

    prColormapP = allocPrColormap();

    for (i = 0; i < colors; ++i) {
        prColormapP->map[0][i] = PPM_GETR(chv[i].color);
        prColormapP->map[1][i] = PPM_GETG(chv[i].color);
        prColormapP->map[2][i] = PPM_GETB(chv[i].color);
    }
    for ( ; i < MAXCOLORS; ++i) {
        prColormapP->map[0][i] = 0;
        prColormapP->map[1][i] = 0;
        prColormapP->map[2][i] = 0;
    }
    return prColormapP;
}



static colormap_t *
makeGrayPrColormap(void) {

    colormap_t * prColormapP;
    unsigned int i;

    prColormapP = allocPrColormap();

    for (i = 0; i < MAXCOLORS; ++i) {
        prColormapP->map[0][i] = i;
        prColormapP->map[1][i] = i;
        prColormapP->map[2][i] = i;
    }

    return prColormapP;
}



static void
doRowDepth1(const xel *     const xelrow,
            unsigned char * const rastRow,
            unsigned int    const cols,
            int             const format,
            xelval          const maxval,
            colorhash_table const cht,
            unsigned int *  const lenP) {

    unsigned int col;
    int bitcount;
    unsigned int cursor;

    cursor = 0;

    rastRow[cursor] = 0;
    bitcount = 7;

    for (col = 0; col < cols; ++col) {
        switch (PNM_FORMAT_TYPE(format)) {
        case PPM_TYPE: {
            xel adjustedXel;
            int color;
            if (maxval != 255)
                PPM_DEPTH(adjustedXel, xelrow[col], maxval, 255 );
            color = ppm_lookupcolor(cht, &adjustedXel);
            if (color == -1)
                pm_error("color not found?!?  "
                         "col=%u  r=%u g=%u b=%u",
                         col,
                         PPM_GETR(adjustedXel),
                         PPM_GETG(adjustedXel),
                         PPM_GETB(adjustedXel));
            if (color)
                rastRow[cursor] |= 1 << bitcount;
        } break;

        default: {
            int const color = PNM_GET1(xelrow[col]);
            if (!color)
                rastRow[cursor] |= 1 << bitcount;
            break;
        }
        }
        --bitcount;
        if (bitcount < 0) {
            ++cursor;
            rastRow[cursor] = 0;
            bitcount = 7;
        }
    }
    *lenP = cursor;
}



static void
doRowDepth8(const xel *     const xelrow,
            unsigned char * const rastRow,
            unsigned int    const cols,
            int             const format,
            xelval          const maxval,
            colorhash_table const cht,
            unsigned int *  const lenP) {

    unsigned int col;
    unsigned int cursor;

    for (col = 0, cursor = 0; col < cols; ++col) {
        int color;  /* color index of pixel or -1 if not in 'cht' */

        switch (PNM_FORMAT_TYPE(format)) {
        case PPM_TYPE: {
            xel adjustedXel;

            if (maxval == 255)
                adjustedXel = xelrow[col];
            else
                PPM_DEPTH(adjustedXel, xelrow[col], maxval, 255);

            color = ppm_lookupcolor(cht, &adjustedXel);
            if (color == -1)
                pm_error("color not found?!?  "
                         "col=%u  r=%u g=%u b=%u",
                         col,
                         PPM_GETR(adjustedXel),
                         PPM_GETG(adjustedXel),
                         PPM_GETB(adjustedXel));
        } break;

        case PGM_TYPE: {
            int const rawColor = PNM_GET1(xelrow[col]);

            color = maxval == 255 ? rawColor : rawColor * 255 / maxval;

        } break;

        default:
            color = PNM_GET1(xelrow[col]);
        }
        rastRow[cursor++] = color;
    }
    *lenP = cursor;
}



static void
doRowDepth24(const xel *     const xelrow,
             unsigned char * const rastRow,
             unsigned int    const cols,
             int             const format,
             xelval          const maxval,
             unsigned int *  const lenP) {

    /* Since depth is 24, we do NOT have a valid cht. */

    unsigned int col;
    unsigned int cursor;

    for (col = 0, cursor = 0; col < cols; ++col) {
        xel adjustedXel;

        if (maxval == 255)
            adjustedXel = xelrow[col];
        else
            PPM_DEPTH(adjustedXel, xelrow[col], maxval, 255);

        rastRow[cursor++] = PPM_GETB(adjustedXel);
        rastRow[cursor++] = PPM_GETG(adjustedXel);
        rastRow[cursor++] = PPM_GETR(adjustedXel);
    }
    *lenP = cursor;
}



static void
computeRaster(unsigned char * const rastRaster,
              unsigned int    const lineSize,
              unsigned int    const depth,
              unsigned int    const cols,
              unsigned int    const rows,
              int             const format,
              xelval          const maxval,
              xel **          const xels,
              colorhash_table const cht) {

    unsigned int row;
    unsigned char * rastRow;

    for (row = 0, rastRow = &rastRaster[0]; row < rows; ++row) {
        xel * const xelrow = xels[row];

        unsigned int len; /* Number of bytes of rast data added to rastRow[] */

        switch (depth) {
        case 1:
            doRowDepth1(xelrow, rastRow, cols, format, maxval, cht, &len);
            break;
        case 8:
            doRowDepth8(xelrow, rastRow, cols, format, maxval, cht, &len);
            break;
        case 24:
            doRowDepth24(xelrow, rastRow, cols, format, maxval, &len);
            break;
        default:
            pm_error("INTERNAL ERROR: impossible depth %u", depth);
        }
        {
            /* Pad out the line (which has a rounded size) with zeroes so
               the resulting file is repeatable.
            */
            unsigned int i;
            for (i = len; i < lineSize; ++i)
                rastRow[i] = 0;
        }
        rastRow += lineSize;
    }
}



int
main(int argc, const char ** argv) {

    FILE * ifP;
    xel ** xels;
    xel p;
    colorhist_vector chv;
    colorhash_table cht;
    colormap_t * prColormapP;
    int argn;
    int prType;
    int rows, cols;
    int format;
    unsigned int depth;
    int colorCt;
    xelval maxval;
    struct pixrect * prP;
    const char * const usage = "[-standard|-rle] [pnmfile]";

    pm_proginit(&argc, argv);

    argn = 1;
    prType = RT_BYTE_ENCODED;

    while ( argn < argc && argv[argn][0] == '-' && argv[argn][1] != '\0' )
    {
        if ( pm_keymatch( argv[argn], "-standard", 2 ) )
            prType = RT_STANDARD;
        else if ( pm_keymatch( argv[argn], "-rle", 2 ) )
            prType = RT_BYTE_ENCODED;
        else
            pm_usage( usage );
        ++argn;
    }

    if ( argn != argc )
    {
        ifP = pm_openr( argv[argn] );
        ++argn;
    }
    else
        ifP = stdin;

    if ( argn != argc )
        pm_usage( usage );

    xels = pnm_readpnm(ifP, &cols, &rows, &maxval, &format);

    pm_close(ifP);

    /* Figure out the proper depth and colormap. */
    switch (PNM_FORMAT_TYPE(format)) {
    case PPM_TYPE:
        pm_message("computing colormap...");
        chv = ppm_computecolorhist(xels, cols, rows, MAXCOLORS, &colorCt);
        if (!chv) {
            pm_message(
                "Too many colors - proceeding to write a 24-bit non-mapped");
            pm_message(
                "rasterfile.  If you want 8 bits, try doing a 'pnmquant %d'.",
                MAXCOLORS);
            depth = 24;
            prType = RT_STANDARD;
            prColormapP = NULL;
        } else {
            pm_message("%u colors found", colorCt);

            if (maxval != 255) {
                unsigned int i;
                for (i = 0; i < colorCt; ++i)
                    PPM_DEPTH(chv[i].color, chv[i].color, maxval, 255);
            }
            /* Force white to slot 0 and black to slot 1, if possible. */
            PPM_ASSIGN(p, 255, 255, 255);
            ppm_addtocolorhist(chv, &colorCt, MAXCOLORS, &p, 0, 0);
            PPM_ASSIGN(p, 0, 0, 0);
            ppm_addtocolorhist(chv, &colorCt, MAXCOLORS, &p, 0, 1);

            if (colorCt == 2) {
                /* Monochrome */
                depth = 1;
                prColormapP = NULL;
            } else {
                /* Turn the ppm colormap into the appropriate Sun colormap. */
                depth = 8;
                prColormapP = makePrColormap(chv, colorCt);
            }
            cht = ppm_colorhisttocolorhash(chv, colorCt);
            ppm_freecolorhist(chv);
        }

        break;

    case PGM_TYPE:
        depth = 8;
        prColormapP = makeGrayPrColormap();
        break;

    default:
        depth = 1;
        prColormapP = NULL;
        break;
    }

    if (maxval > 255 && depth != 1)
        pm_message(
            "maxval is not 255 - automatically rescaling colors");

    /* Allocate space for the Sun-format image. */
    prP = mem_create(cols, rows, depth);
    if (!prP)
        pm_error("unable to create new pixrect");

    computeRaster(prP->pr_data->md_image,
                  prP->pr_data->md_linebytes,
                  depth,
                  cols, rows, format, maxval, xels, cht);

    pnm_freearray(xels, rows);

    {
        int rc;

        rc = pr_dump(prP, stdout, prColormapP, prType, 0);
        if (rc == PIX_ERR )
            pm_error("error writing rasterfile");
    }
    return 0;
}