about summary refs log tree commit diff
path: root/converter/pgm/rawtopgm.c
blob: f34815a70581b9e20bccb18815f6d78b690f03d8 (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
/* rawtopgm.c - convert raw grayscale bytes into a portable graymap
**
** Copyright (C) 1989 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 <math.h>

#include "pm_c_util.h"
#include "mallocvar.h"
#include "shhopt.h"
#include "pgm.h"

struct cmdline_info {
    /* All the information the user supplied in the command line,
       in a form easy for the program to use.
    */
    const char * inputFileName;
    unsigned int headerskip;
    float rowskip;
    int bottomfirst;  /* the -bottomfirst/-bt option */
    int autosize;  /* User wants us to figure out the size */
    unsigned int width;
    unsigned int height;
    int bpp;
      /* bytes per pixel in input format.  1 or 2 */
    int littleendian;
      /* logical: samples in input are least significant byte first */
    int maxval;  /* -maxval option, or -1 if none */
};


static void
parse_command_line(int argc, char ** argv,
                   struct cmdline_info *cmdlineP) {
/*----------------------------------------------------------------------------
   Note that the file spec array we return is stored in the storage that
   was passed to us as the argv array.
-----------------------------------------------------------------------------*/
    optEntry * option_def;
        /* Instructions to OptParseOptions3 on how to parse our options.
         */
    optStruct3 opt;

    unsigned int option_def_index;

    MALLOCARRAY_NOFAIL(option_def, 100);

    option_def_index = 0;   /* incremented by OPTENT3 */
    OPTENT3(0,   "bottomfirst",   OPT_FLAG,   &cmdlineP->bottomfirst,
            NULL,   0);
    OPTENT3(0,   "bt",            OPT_FLAG,   &cmdlineP->bottomfirst,
            NULL,   0);
    OPTENT3(0,   "topbottom",     OPT_FLAG,   &cmdlineP->bottomfirst,
            NULL,   0);
    OPTENT3(0,   "tb",            OPT_FLAG,   &cmdlineP->bottomfirst,
            NULL,   0);
    OPTENT3(0,   "headerskip",    OPT_UINT,   &cmdlineP->headerskip,
            NULL,   0);
    OPTENT3(0,   "rowskip",       OPT_FLOAT,  &cmdlineP->rowskip,
            NULL,   0);
    OPTENT3(0,   "bpp",           OPT_INT,    &cmdlineP->bpp,
            NULL,   0);
    OPTENT3(0,   "littleendian",  OPT_FLAG,   &cmdlineP->littleendian,
            NULL,   0);
    OPTENT3(0,   "maxval",        OPT_UINT,   &cmdlineP->maxval,
            NULL,   0);

    /* Set the defaults */
    cmdlineP->bottomfirst = FALSE;
    cmdlineP->headerskip = 0;
    cmdlineP->rowskip = 0.0;
    cmdlineP->bpp = 1;
    cmdlineP->littleendian = 0;
    cmdlineP->maxval = -1;

    opt.opt_table = option_def;
    opt.short_allowed = FALSE;  /* We have no short (old-fashioned) options */
    opt.allowNegNum = FALSE;  /* We may have parms that are negative numbers */

    pm_optParseOptions3(&argc, argv, opt, sizeof(opt), 0);
        /* Uses and sets argc, argv, and some of *cmdlineP and others. */

    if (argc-1 == 0) {
        cmdlineP->inputFileName = "-";
        cmdlineP->autosize = TRUE;
    } else if (argc-1 == 1) {
        cmdlineP->inputFileName = argv[1];
        cmdlineP->autosize = TRUE;
    } else if (argc-1 == 2) {
        cmdlineP->inputFileName = "-";
        cmdlineP->autosize = FALSE;
        cmdlineP->width = pm_parse_width(argv[1]);
        cmdlineP->height = pm_parse_height(argv[2]);
    } else if (argc-1 == 3) {
        cmdlineP->inputFileName = argv[3];
        cmdlineP->autosize = FALSE;
        cmdlineP->width = pm_parse_width(argv[1]);
        cmdlineP->height = pm_parse_height(argv[2]);
    } else
        pm_error("Program takes zero, one, two, or three arguments.  You "
                 "specified %d", argc-1);

    if (cmdlineP->bpp != 1 && cmdlineP->bpp != 2)
        pm_error("Bytes per pixel (-bpp) must be 1 or 2.  You specified %d.",
                 cmdlineP->bpp);

    if (cmdlineP->maxval == 0)
        pm_error("Maxval (-maxval) may not be zero.");

    if (cmdlineP->maxval > 255 && cmdlineP->bpp == 1)
        pm_error("You have specified one byte per pixel, but a maxval "
                 "too large to fit in one byte: %d", cmdlineP->maxval);
    if (cmdlineP->maxval > 65535)
        pm_error("Maxval must be less than 65536.  You specified %d.",
                 cmdlineP->maxval);

    if (cmdlineP->rowskip && cmdlineP->autosize)
        pm_error("If you specify -rowskip, you must also give the image "
                 "dimensions.");
    if (cmdlineP->rowskip && cmdlineP->bottomfirst)
        pm_error("You cannot specify both -rowskip and -bottomfirst.  This is "
                 "a limitation of this program.");

}



static void
compute_image_size(const struct cmdline_info cmdline, const long nread,
                   int * const rows_p, int * const cols_p) {

    if (cmdline.autosize) {
        int sqrt_trunc =
            (int) sqrt((double) (nread-cmdline.headerskip));
        if (sqrt_trunc*sqrt_trunc+cmdline.headerskip != nread)
            pm_error( "You must specify the dimensions of the image unless "
                      "it is a quadratic image.  This one is not quadratic: "
                      "The number of "
                      "pixels in the input is %ld, which is not a perfect "
                      "square.", nread-cmdline.headerskip);
        *rows_p = *cols_p = sqrt_trunc;
        pm_message( "Image size: %d cols, %d rows", *cols_p, *rows_p);
    } else {
        *rows_p = cmdline.height;
        *cols_p = cmdline.width;
    }
}



static void
skip_header(FILE *ifp, const int headerskip) {
    int i;

    for ( i = 0; i < headerskip; ++i ) {
        /* Read a byte out of the file */
        int val;
        val = getc( ifp );
        if ( val == EOF )
            pm_error("EOF / read error reading Byte %d in the header", i );
    }
}



static gray
read_from_file(FILE *ifp, const int bpp, const int row, const int col,
               const int littleendian) {
/*----------------------------------------------------------------------------
   Return the next sample value from the input file 'ifp', assuming the
   input stream is 'bpp' bytes per pixel (1 or 2).  In the case of two
   bytes, if 'littleendian', assume least significant byte is first.
   Otherwise, assume MSB first.

   In error messages, say this is Column 'col', Row 'row'.  Exit program if
   error.
-----------------------------------------------------------------------------*/
    gray retval;

    if (bpp == 1) {
        int val;
        val = getc(ifp);
        if (val == EOF)
            pm_error( "EOF / read error at Row %d Column %d",
                      row, col);
        retval = (gray) val;
    } else {
        short val;
        int rc;
        rc = littleendian ?
            pm_readlittleshort(ifp, &val) : pm_readbigshort(ifp, &val);
        if (rc != 0)
            pm_error( "EOF / read error at Row %d Column %d",
                      row, col);
        retval = (gray) val;
    }
    return retval;
}



int
main(int argc, char *argv[] ) {

    struct cmdline_info cmdline;
    FILE* ifp;
    gray* grayrow;
    int rows, cols;
    gray maxval;
    char* buf;
    /* pixels_1 and pixels_2 are the array of pixels in the input buffer
       (assuming we are using an input buffer).  pixels_1 is the array
       as if the pixels are one byte each.  pixels_2 is the array as if
       they are two bytes each.
       */
    unsigned char *pixels_1;
    unsigned short *pixels_2;
    long nread;
    int row;
    float toskip;

    pgm_init( &argc, argv );

    parse_command_line(argc, argv, &cmdline);

    ifp = pm_openr(cmdline.inputFileName);

    if (cmdline.autosize || cmdline.bottomfirst) {
        buf = pm_read_unknown_size( ifp, &nread );
        pixels_1 = (unsigned char *) buf;
        pixels_2 = (unsigned short *) buf;
    } else
        buf = NULL;

    compute_image_size(cmdline, nread, &rows, &cols);

    if (!buf)
        skip_header(ifp, cmdline.headerskip);

    toskip = 0.00001;

    if (cmdline.maxval == -1)
        maxval = (cmdline.bpp == 1 ? (gray) 255 : (gray) 65535);
    else
        maxval = (gray) cmdline.maxval;

    pgm_writepgminit( stdout, cols, rows, maxval, 0 );
    grayrow = pgm_allocrow( cols );

    for ( row = 0; row < rows; ++row) {
        int col;
        unsigned int rowpos; /* index of this row in pixel array */
        if (cmdline.bottomfirst)
            rowpos = (rows-row-1) * cols;
        else
            rowpos = row * cols;

        for ( col = 0; col < cols; ++col )
            if (buf) {
                if (cmdline.bpp == 1)
                    grayrow[col] = pixels_1[rowpos+col];
                else
                    grayrow[col] = pixels_2[rowpos+col];
            } else {
                grayrow[col] = read_from_file(ifp, cmdline.bpp,
                                              row, col,
                                              cmdline.littleendian);
            }
        for ( toskip += cmdline.rowskip; toskip >= 1.0; toskip -= 1.0 ) {
            /* Note that if we're using a buffer, cmdline.rowskip is zero */
            int val;
            val = getc( ifp );
            if ( val == EOF )
                pm_error( "EOF / read error skipping bytes at the end "
                          "of Row %d.", row);
        }
        pgm_writepgmrow( stdout, grayrow, cols, maxval, 0 );
    }

    if (buf)
        free(buf);
    pm_close( ifp );
    pm_close( stdout );

    exit( 0 );
}