about summary refs log tree commit diff
path: root/converter/other/pnmtojpeg.c
blob: b80860e7dda4d0996a96a75cbd21dd8ed80aff3e (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
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
/*****************************************************************************
                                pnmtojpeg
******************************************************************************
  This program is part of the Netpbm package.

  This program converts from the PNM formats to the JFIF format
  which is based on JPEG.

  This program is by Bryan Henderson on 2000.03.06, but is derived
  with permission from the program cjpeg, which is in the Independent
  Jpeg Group's JPEG library package.  Under the terms of that permission,
  redistribution of this software is restricted as described in the
  file README.JPEG.

  Copyright (C) 1991-1998, Thomas G. Lane.

*****************************************************************************/

#define _DEFAULT_SOURCE 1  /* New name for SVID & BSD source defines */
#define _BSD_SOURCE 1      /* Make sure strdup() is in string.h */
#define _XOPEN_SOURCE 500  /* Make sure strdup() is in string.h */

#include <ctype.h>              /* to declare isdigit(), etc. */
#include <stdbool.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <stdio.h>
#include <assert.h>
/* Note: jpeglib.h prerequires stdlib.h and ctype.h.  It should include them
   itself, but doesn't.
*/
#include <jpeglib.h>

#include "pm_c_util.h"
#include "pnm.h"
#include "shhopt.h"
#include "mallocvar.h"
#include "nstring.h"

#define EXIT_WARNING 2   /* Goes with EXIT_SUCCESS, EXIT_FAILURE in stdlib.h */

enum RestartUnit {RESTART_MCU, RESTART_ROW, RESTART_NONE};
enum DensityUnit {DEN_UNSPECIFIED, DEN_DOTS_PER_INCH, DEN_DOTS_PER_CM};

struct Density {
    enum DensityUnit unit;
        /* The units of density for 'horiz', 'vert' */
    unsigned short horiz;  /* Not 0 */
        /* Horizontal density, in units specified by 'unit' */
    unsigned short vert;   /* Not 0 */
        /* Same as 'horiz', but vertical */
};

struct CmdlineInfo {
    /* All the information the user supplied in the command line,
       in a form easy for the program to use.
     */
    char *           inputFileNm;
    unsigned int     verbose;
    unsigned int     quality;
    unsigned int     baseline;
    unsigned int     progressive;
    unsigned int     arithmetic;
    J_DCT_METHOD     dctMethod;
    unsigned int     grayscale;
    unsigned int     rgb;
    long int         maxMemoryToUse;
    unsigned int     tracelevel;
    char *           qslots;
    char *           qtablefile;
    char *           sample;
    char *           scans;
    int              smooth;
    unsigned int     optimize;
    unsigned int     restartValue;
    enum RestartUnit restartUnit;
    char *           restart;
    char *           comment;            /* NULL if none */
    const char *     exif;               /* NULL if none */
    unsigned int     densitySpec;
        /* boolean: JFIF should specify a density.  If false, 'density'
           is undefined.
        */
    struct Density density;
};

static void
interpretMaxmemory (const char * const maxmemory,
                    long int *   const maxMemoryToUseP) {
    long int lval;
    char ch;

    if (maxmemory == NULL) {
        *maxMemoryToUseP = -1;  /* unspecified */
    } else if (sscanf(maxmemory, "%ld%c", &lval, &ch) < 1) {
        pm_error("Invalid value for --maxmemory option: '%s'.", maxmemory);
        exit(EXIT_FAILURE);
    } else {
        if (ch == 'm' || ch == 'M') lval *= 1000L;
        *maxMemoryToUseP = lval * 1000L;
    }
}



static void
interpretRestart(const char *       const restartOpt,
                 unsigned int *     const restartValueP,
                 enum RestartUnit * const restartUnitP) {
/*----------------------------------------------------------------------------
   Interpret the restart command line option.  Return values suitable
   for plugging into a jpeg_compress_struct to control compression.
-----------------------------------------------------------------------------*/
    if (restartOpt == NULL) {
        /* No --restart option.  Set default */
        *restartUnitP = RESTART_NONE;
    } else {
        /* Restart interval in MCU rows (or in MCUs with 'b'). */
        long lval;
        char ch;
        unsigned int matches;

        matches= sscanf(restartOpt, "%ld%c", &lval, &ch);
        if (matches == 0)
            pm_error("Invalid value for the --restart option : '%s'.",
                     restartOpt);
        else {
            if (lval < 0 || lval > 65535L) {
                pm_error("--restart value %ld is out of range.", lval);
                exit(EXIT_FAILURE);
            } else {
                if (matches == 1) {
                    *restartValueP = lval;
                    *restartUnitP  = RESTART_ROW;
                } else {
                    if (ch == 'b' || ch == 'B') {
                        *restartValueP = lval;
                        *restartUnitP  = RESTART_MCU;
                    } else
                        pm_error("Invalid --restart value '%s'.", restartOpt);
                }
            }
        }
    }
}



static void
interpretDensity(const char *     const densityString,
                 struct Density * const densityP) {
/*----------------------------------------------------------------------------
   Interpret the value of the "-density" option.
-----------------------------------------------------------------------------*/
    if (strlen(densityString) < 1)
        pm_error("-density value cannot be null.");
    else {
        char * unitName;  /* malloc'ed */
        int matched;
        int horiz, vert;

        unitName = malloc(strlen(densityString)+1);

        matched = sscanf(densityString, "%dx%d%s", &horiz, &vert, unitName);

        if (matched < 2)
            pm_error("Invalid format for density option value '%s'.  It "
                     "should follow the example '3x2' or '3x2dpi' or "
                     "'3x2dpcm'.", densityString);
        else {
            if (horiz <= 0 || horiz >= 1<<16)
                pm_error("Horizontal density %d is outside the range 1-65535",
                         horiz);
            else if (vert <= 0 || vert >= 1<<16)
                pm_error("Vertical density %d is outside the range 1-65535",
                         vert);
            else {
                densityP->horiz = horiz;
                densityP->vert  = vert;

                if (matched < 3)
                    densityP->unit = DEN_UNSPECIFIED;
                else {
                    if (streq(unitName, "dpi") || streq(unitName, "DPI"))
                        densityP->unit = DEN_DOTS_PER_INCH;
                    else if (streq(unitName, "dpcm") ||
                             streq(unitName, "DPCM"))
                        densityP->unit = DEN_DOTS_PER_CM;
                    else
                        pm_error("Unrecognized unit '%s' in the density value "
                                 "'%s'.  I recognize only 'dpi' and 'dpcm'",
                                 unitName, densityString);
                }
            }
        }
        free(unitName);
    }
}



static void
parseCommandLine(const int argc, const char ** argv,
                 struct CmdlineInfo * const cmdlineP) {
/*----------------------------------------------------------------------------
   Note that many of the strings that this function returns in the
   *cmdlineP structure are actually in the supplied argv array.  And
   sometimes, one of these strings is actually just a suffix of an entry
   in argv!

   On the other hand, unlike other option processing functions, we do
   not change argv at all.
-----------------------------------------------------------------------------*/
    optEntry * option_def;   /* Used by OPTENT3 */
    optStruct3 opt;

    int i;  /* local loop variable */

    const char * dctval;
    const char * maxmemory;
    const char * restart;
    const char * density;

    unsigned int qualitySpec, smoothSpec;

    unsigned int option_def_index;

    int argcParse;       /* argc, except we modify it as we parse */
    const char ** argvParse;
        /* argv, except we modify it as we parse */

    MALLOCARRAY_NOFAIL(option_def, 100);

    MALLOCARRAY(argvParse, argc + 1);  /* +1 for the terminating null ptr */

    option_def_index = 0;   /* incremented by OPTENTRY */
    OPTENT3(0, "verbose",     OPT_FLAG,   NULL, &cmdlineP->verbose,        0);
    OPTENT3(0, "quality",     OPT_UINT,   &cmdlineP->quality,
            &qualitySpec,        0);
    OPTENT3(0, "baseline",    OPT_FLAG,   NULL, &cmdlineP->baseline,       0);
    OPTENT3(0, "progressive", OPT_FLAG,   NULL, &cmdlineP->progressive,    0);
    OPTENT3(0, "arithmetic",  OPT_FLAG,   NULL, &cmdlineP->arithmetic,     0);
    OPTENT3(0, "dct",         OPT_STRING, &dctval, NULL,                   0);
    OPTENT3(0, "grayscale",   OPT_FLAG,   NULL, &cmdlineP->grayscale,      0);
    OPTENT3(0, "greyscale",   OPT_FLAG,   NULL, &cmdlineP->grayscale,      0);
    OPTENT3(0, "rgb",         OPT_FLAG,   NULL, &cmdlineP->rgb,            0);
    OPTENT3(0, "maxmemory",   OPT_STRING, &maxmemory, NULL,                0);
    OPTENT3(0, "tracelevel",  OPT_UINT,   &cmdlineP->tracelevel, NULL,    0);
    OPTENT3(0, "qslots",      OPT_STRING, &cmdlineP->qslots,      NULL,    0);
    OPTENT3(0, "qtables",     OPT_STRING, &cmdlineP->qtablefile,  NULL,    0);
    OPTENT3(0, "sample",      OPT_STRING, &cmdlineP->sample,      NULL,    0);
    OPTENT3(0, "scans",       OPT_STRING, &cmdlineP->scans,       NULL,    0);
    OPTENT3(0, "smooth",      OPT_UINT,   &cmdlineP->smooth,
            &smoothSpec,  0);
    OPTENT3(0, "optimize",    OPT_FLAG,   NULL, &cmdlineP->optimize,       0);
    OPTENT3(0, "optimise",    OPT_FLAG,   NULL, &cmdlineP->optimize,       0);
    OPTENT3(0, "restart",     OPT_STRING, &restart, NULL,                   0);
    OPTENT3(0, "comment",     OPT_STRING, &cmdlineP->comment, NULL,        0);
    OPTENT3(0, "exif",        OPT_STRING, &cmdlineP->exif, NULL,  0);
    OPTENT3(0, "density",     OPT_STRING, &density,
            &cmdlineP->densitySpec, 0);


    /* Set the defaults */
    dctval = NULL;
    maxmemory = NULL;
    cmdlineP->tracelevel = 0;
    cmdlineP->qslots = NULL;
    cmdlineP->qtablefile = NULL;
    cmdlineP->sample = NULL;
    cmdlineP->scans = NULL;
    restart = NULL;
    cmdlineP->comment = NULL;
    cmdlineP->exif = NULL;

    /* Make private copy of arguments for pm_optParseOptions to corrupt */
    argcParse = argc;
    for (i = 0; i < argc+1; ++i)
        argvParse[i] = argv[i];

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

    pm_optParseOptions4(&argcParse, argvParse, opt, sizeof(opt), 0);

    if (!qualitySpec)
        cmdlineP->quality = -1;  /* unspecified */

    if (!smoothSpec)
        cmdlineP->smooth = -1;

    if (cmdlineP->rgb && cmdlineP->grayscale)
        pm_error("You can't specify both -rgb and -grayscale");

    if (argcParse - 1 == 0)
        cmdlineP->inputFileNm = strdup("-");  /* he wants stdin */
    else if (argcParse - 1 == 1)
        cmdlineP->inputFileNm = strdup(argvParse[1]);
    else
        pm_error("Too many arguments.  The only argument accepted "
                 "is the input file specification.");
    if (dctval == NULL)
        cmdlineP->dctMethod = JDCT_DEFAULT;
    else {
        if (streq(dctval, "int"))
            cmdlineP->dctMethod = JDCT_ISLOW;
        else if (streq(dctval, "fast"))
            cmdlineP->dctMethod = JDCT_IFAST;
        else if (streq(dctval, "float"))
            cmdlineP->dctMethod = JDCT_FLOAT;
        else
            pm_error("Invalid value for the --dct option: '%s'.", dctval);
    }

    interpretMaxmemory(maxmemory, &cmdlineP->maxMemoryToUse);
    interpretRestart(restart, &cmdlineP->restartValue,
                      &cmdlineP->restartUnit);
    if (cmdlineP->densitySpec)
        interpretDensity(density, &cmdlineP->density);

    if (cmdlineP->smooth > 100)
        pm_error("Smoothing factor %d is greater than 100 (%%).",
                 cmdlineP->smooth);

    if (streq(cmdlineP->inputFileNm, "=") &&
        cmdlineP->exif && streq(cmdlineP->exif, "-"))

        pm_error("Cannot have both input image and exif header be from "
                 "Standard Input.");


    free(argvParse);
}



static void
reportCompressor(const struct jpeg_compress_struct cinfo) {

    if (cinfo.scan_info == NULL)
        pm_message("No scan script is being used");
    else {
        unsigned int i;
        pm_message("A scan script with %d entries is being used:",
                   cinfo.num_scans);
        for (i = 0; i < cinfo.num_scans; ++i) {
            unsigned int j;
            pm_message("    Scan %2d: Ss=%2d Se=%2d Ah=%2d Al=%2d  "
                       "%d components",
                       i,
                       cinfo.scan_info[i].Ss,
                       cinfo.scan_info[i].Se,
                       cinfo.scan_info[i].Ah,
                       cinfo.scan_info[i].Al,
                       cinfo.scan_info[i].comps_in_scan
                       );
            for (j = 0; j < cinfo.scan_info[i].comps_in_scan; ++j)
                pm_message("        Color component %d index: %d", j,
                           cinfo.scan_info[i].component_index[j]);
        }
    }
}



static void
setupJpegSourceParameters(struct jpeg_compress_struct * const cinfoP,
                          unsigned int                  const width,
                          unsigned int                  const height,
                          int                           const format) {
/*----------------------------------------------------------------------------
   Set up in the compressor descriptor *cinfoP the description of the
   source image as required by the compressor.
-----------------------------------------------------------------------------*/
    switch PNM_FORMAT_TYPE(format) {
    case PBM_TYPE:
    case PGM_TYPE:
        cinfoP->in_color_space = JCS_GRAYSCALE;
        cinfoP->input_components = 1;
        break;
    case PPM_TYPE:
        cinfoP->in_color_space = JCS_RGB;
        cinfoP->input_components = 3;
        break;
    default:
        pm_error("INTERNAL ERROR; invalid format in "
                 "setup_jpeg_source_parameters()");
    }
}



static void
setupJpegDensity(struct jpeg_compress_struct * const cinfoP,
                 struct Density                const density) {
/*----------------------------------------------------------------------------
   Set up in the compressor descriptor *cinfoP the density information
   'density'.
-----------------------------------------------------------------------------*/
    switch(density.unit) {
    case DEN_UNSPECIFIED:   cinfoP->density_unit = 0; break;
    case DEN_DOTS_PER_INCH: cinfoP->density_unit = 1; break;
    case DEN_DOTS_PER_CM:   cinfoP->density_unit = 2; break;
    }

    cinfoP->X_density = density.horiz;
    cinfoP->Y_density = density.vert;
}



/*----------------------------------------------------------------------------
   The functions below here are essentially the file rdswitch.c from
   the JPEG library.  They perform the functions specified by the following
   pnmtojpeg options:

   -qtables file          Read quantization tables from text file
   -scans file            Read scan script from text file
   -qslots N[,N,...]      Set component quantization table selectors
   -sample HxV[,HxV,...]  Set component sampling factors
-----------------------------------------------------------------------------*/

static int
textGetc (FILE * fileP) {
/*----------------------------------------------------------------------------
  Read next char, skipping over any comments (# to end of line).

  Return a comment/newline sequence as a newline.
-----------------------------------------------------------------------------*/
    int ch;

    ch = getc(fileP);
    if (ch == '#') {
        do {
            ch = getc(fileP);
        } while (ch != '\n' && ch != EOF);
    }
    return ch;
}



static void
readTextInteger(FILE * const fileP,
                bool * const gotOneP,
                long * const resultP,
                int *  const termcharP) {
/*----------------------------------------------------------------------------
   Read the next unsigned decimal integer from file 'fileP', skipping
   white space as necessary.  Return it as *resultP.

   Also read one character after the integer and return it as *termcharP.

   If there is no character after the integer, return *termcharP == EOF.

   Iff the next thing in the file is not a valid unsigned decimal integer,
   return *gotOneP false.
-----------------------------------------------------------------------------*/
    int ch;

    /* Skip any leading whitespace, detect EOF */
    do {
        ch = textGetc(fileP);
    } while (isspace(ch));

    if (!isdigit(ch))
        *gotOneP = false;
    else {
        long val;
        val = ch - '0';  /* initial value */
        while ((ch = textGetc(fileP)) != EOF) {
            if (! isdigit(ch))
                break;
            val *= 10;
            val += ch - '0';
        }
        *resultP = val;
        *gotOneP = true;
    }
    *termcharP = ch;
}



static void
readScanInteger(FILE * const fileP,
                bool * const gotOneP,
                long * const resultP,
                int *  const termcharP) {
/*----------------------------------------------------------------------------
  Variant of readTextInteger that always looks for a non-space termchar.
  this simplifies parsing of punctuation in scan scripts.
-----------------------------------------------------------------------------*/
    readTextInteger(fileP, gotOneP, resultP, termcharP);

    if (*gotOneP) {
        int ch;

        ch = *termcharP;  /* initial value */

        while (ch != EOF && isspace(ch))
            ch = textGetc(fileP);

        if (isdigit(ch)) {              /* oops, put it back */
            if (ungetc(ch, fileP) == EOF)
                pm_error("Unexpected failure of ungetc");
            ch = ' ';
        } else {
            /* Any separators other than ';' and ':' are ignored;
             * this allows user to insert commas, etc, if desired.
             */
            if (ch != EOF && ch != ';' && ch != ':')
                ch = ' ';
        }
        *termcharP = ch;
    }
}



static void
readScanScriptComponents(FILE *           const fP,
                         jpeg_scan_info * const scanP,
                         int *            const termcharP,
                         long *           const valP,
                         const char **    const errorP) {
/*----------------------------------------------------------------------------
   Set component table in *scanP, i.e. scanP->component_index and
   scanP->comps_in_scan.

   *termcharP and *valP at entry are for the value we already read from the
   file; at exit, they are the value beyond the component table.
-----------------------------------------------------------------------------*/
    unsigned int compCt;

    *errorP = NULL;  /* initial value */

    /* First component is value we already read: */
    scanP->component_index[0] = (int) *valP;
    compCt = 1;

    /* Rest of components follow, until termchar other than ' ': */
    while (*termcharP == ' ' && !*errorP) {
        bool gotOne;
        if (compCt >= MAX_COMPS_IN_SCAN) {
            pm_asprintf(errorP, "Too many components in one scan "
                        "(Max allowed is %u)", MAX_COMPS_IN_SCAN);
        }
        readScanInteger(fP, &gotOne, valP, termcharP);
        if (!gotOne)
            pm_asprintf(errorP, "Invalid scan entry format");
        else
            scanP->component_index[compCt++] = (int) *valP;
    }
    scanP->comps_in_scan = compCt;
}



static void
readScanScriptProg(FILE *           const fP,
                   jpeg_scan_info * const scanP,
                   int *            const termcharP,
                   long *           const valP,
                   const char **    const errorP) {

    bool gotOne;
    readScanInteger(fP, &gotOne, valP, termcharP);
    if (!gotOne || *termcharP != ' ')
        pm_asprintf(errorP, "Error in Ss");
    else {
        bool gotOne;
        scanP->Ss = (int) *valP;
        readScanInteger(fP, &gotOne, valP, termcharP);
        if (!gotOne || *termcharP != ' ')
            pm_asprintf(errorP, "Error in Se");
        else {
            bool gotOne;
            scanP->Se = (int) *valP;
            readScanInteger(fP, &gotOne, valP, termcharP);
            if (!gotOne || *termcharP != ' ')
                pm_asprintf(errorP, "Error in Ah");
            else {
                bool gotOne;
                scanP->Ah = (int) *valP;
                readScanInteger(fP, &gotOne, valP, termcharP);
                if (!gotOne)
                    pm_asprintf(errorP, "Error in Al");
                else {
                    scanP->Al = (int) *valP;
                    *errorP = NULL;
                }
            }
        }
    }
}



static void
setScanScriptNonProgressive(jpeg_scan_info * const scanP) {

    scanP->Ss = 0;
    scanP->Se = DCTSIZE2-1;
    scanP->Ah = 0;
    scanP->Al = 0;
}



static void
readScanScript1(FILE *           const fP,
                jpeg_scan_info * const scanP,
                int *            const termcharP,
                long *           const valP,
                const char **    const errorP) {

    const char * error;

    readScanScriptComponents(fP, scanP, termcharP, valP, &error);

    if (error) {
        pm_asprintf(errorP, "Error in component table.  %s", error);
        pm_strfree(error);
    } else {
        if (*termcharP == ':') {
            const char * error;

            readScanScriptProg(fP, scanP, termcharP, valP, &error);

            if (error) {
                pm_asprintf(errorP, "Invalid progressive parameters.  %s",
                            error);
                pm_strfree(error);
            }
        } else
            setScanScriptNonProgressive(scanP);

        if (*termcharP != ';' && *termcharP != EOF) {
            pm_asprintf(errorP, "Expected ';' or EOF");
        }
    }
}



static void
readScanScript(j_compress_ptr const cinfoP,
               const char *   const fileNm,
               const char **  const errorP) {
/*----------------------------------------------------------------------------
  Read a scan script from the specified text file.

  Each entry in the file defines one scan to be emitted.

  Entries are separated by semicolons ';'.

  An entry contains one to four component indexes, optionally followed by a
  colon ':' and four progressive-JPEG parameters.  The indexes and parameters
  are separated by spaces.

  The component indexes identify the color components to be transmitted in the
  current scan.  The first component has index 0.

  Sequential JPEG is used if the progressive-JPEG parameters are omitted.

  Any whitespace may appear between numbers and the ':' and ';' punctuation
  marks.  Also, other punctuation (such as commas or dashes) may be placed
  between numbers.

  Comments preceded by '#' may be included in the file.

  Note: we do very little validity checking here; libjpeg will validate the
  script parameters.

  The data goes into newly malloc'ed memory pointed to by cinfo->scan_info,
  with its size as cinfo->num_scans.  If there isn't any scan script,
  cinfo->scan_info is null.
-----------------------------------------------------------------------------*/
    FILE * fP;

    fP = fopen(fileNm, "r");
    if (!fP)
        pm_asprintf(errorP, "Can't open file");
    else {
        bool notEof;
        unsigned int scanCt;
        int termchar;
        long val;
        jpeg_scan_info * scan;  /* malloc'ed array */
            /* Index 0 in this array is called "Entry 1" by libjpeg messages */

        for (notEof = true, *errorP = NULL, scanCt = 0, scan = NULL;
             notEof && !*errorP;
            ) {
            readScanInteger(fP, &notEof, &val, &termchar);
            if (notEof && !*errorP) {
                ++scanCt;  /* We got another scan */

                REALLOCARRAY(scan, scanCt);

                if (!scan)
                    pm_error("Unable to allocate memory for scan table");

                readScanScript1(fP, &scan[scanCt-1], &termchar, &val, errorP);
            }
        }
        if (!*errorP && termchar != EOF)
            pm_asprintf(errorP, "Non-numeric data in file '%s'", fileNm);

        if (*errorP) {
            if (scan)
                free(scan);
            cinfoP->scan_info = NULL;
        } else {
            cinfoP->scan_info = scanCt > 0 ? scan : NULL;
            cinfoP->num_scans = scanCt;
        }
        fclose(fP);
    }
}



static bool
readQuantTables(j_compress_ptr const cinfo,
                const char *   const fileNm,
                int            const scaleFactor,
                bool           const forceBaseline) {
/*----------------------------------------------------------------------------
  Read a set of quantization tables from the specified file.
  The file is plain ASCII text: decimal numbers with whitespace between.
  Comments preceded by '#' may be included in the file.
  There may be one to NUM_QUANT_TBLS tables in the file, each of 64 values.
  The tables are implicitly numbered 0,1,etc.
  NOTE: does not affect the qslots mapping, which will default to selecting
  table 0 for luminance (or primary) components, 1 for chrominance components.
  You must use -qslots if you want a different component->table mapping.
-----------------------------------------------------------------------------*/
    FILE * fp;
    bool retval;

    fp = fopen(fileNm, "rb");
    if (fp == NULL) {
        pm_message("Can't open table file '%s'", fileNm);
        retval = false;
    } else {
        boolean eof, error;
        unsigned int tblno;

        for (tblno = 0, eof = false, error = false; !eof && !error; ++tblno) {
            long val;
            int termchar;
            bool gotOne;

            readTextInteger(fp, &gotOne, &val, &termchar);
            if (gotOne) {
                /* read 1st element of table */
                if (tblno >= NUM_QUANT_TBLS) {
                    pm_message("Too many tables in file '%s'", fileNm);
                    error = true;
                } else {
                    unsigned int table[DCTSIZE2];
                    unsigned int i;

                    table[0] = (unsigned int) val;
                    for (i = 1; i < DCTSIZE2 && !error; ++i) {
                        bool gotOne;
                        readTextInteger(fp, &gotOne, &val, &termchar);
                        if (!gotOne) {
                            pm_message("Invalid table data in file '%s'",
                                       fileNm);
                            error = true;
                        } else
                            table[i] = (unsigned int) val;
                    }
                    if (!error)
                        jpeg_add_quant_table(
                            cinfo, tblno, table, scaleFactor, forceBaseline);
                }
            } else {
                if (termchar == EOF)
                    eof = TRUE;
                else {
                    pm_message("Non-numeric data in file '%s'", fileNm);
                    error = TRUE;
                }
            }
        }

        fclose(fp);
        retval = !error;
    }

    return retval;
}



static bool
setQuantSlots(j_compress_ptr const cinfo,
              const char *   const arg) {
/*----------------------------------------------------------------------------
  Process a quantization-table-selectors parameter string, of the form
  N[,N,...]

  If there are more components than parameters, the last value is replicated.
-----------------------------------------------------------------------------*/
    int val;
    int ci;
    char ch;
    unsigned int i;

    val = 0; /* initial value - default table */

    for (ci = 0, i = 0; ci < MAX_COMPONENTS; ++ci) {
        if (arg[i]) {
            ch = ',';                   /* if not set by sscanf, will be ',' */
            if (sscanf(&arg[i], "%d%c", &val, &ch) < 1)
                return false;
            if (ch != ',')              /* syntax check */
                return false;
            if (val < 0 || val >= NUM_QUANT_TBLS) {
                pm_message("Invalid quantization table number: %d.  "
                           "JPEG quantization tables are numbered 0..%d",
                           val, NUM_QUANT_TBLS - 1);
                return false;
            }
            cinfo->comp_info[ci].quant_tbl_no = val;
            while (arg[i] && arg[i] != ',') {
                ++i;
                /* advance to next segment of arg string */
            }
        } else {
            /* reached end of parameter, set remaining components to last tbl*/
            cinfo->comp_info[ci].quant_tbl_no = val;
        }
    }
    return true;
}



static bool
setSampleFactors (j_compress_ptr const cinfo,
                  const char *   const arg) {
/*----------------------------------------------------------------------------
  Process a sample-factors parameter string, of the form
  HxV[,HxV,...]

  If there are more components than parameters, "1x1" is assumed for the rest.
-----------------------------------------------------------------------------*/
    int val1, val2;
    char ch1, ch2;
    unsigned int i;
    unsigned int ci;

    for (ci = 0, i = 0; ci < MAX_COMPONENTS; ++ci) {
        if (arg[i]) {
            ch2 = ',';          /* if not set by sscanf, will be ',' */
            if (sscanf(&arg[i], "%d%c%d%c", &val1, &ch1, &val2, &ch2) < 3)
                return false;
            if ((ch1 != 'x' && ch1 != 'X') || ch2 != ',') /* syntax check */
                return false;
            if (val1 <= 0 || val1 > 4) {
                pm_message("Invalid sampling factor: %d.  "
                           "JPEG sampling factors must be 1..4", val1);
                return false;
            }
            if (val2 <= 0 || val2 > 4) {
                pm_message("Invalid sampling factor: %d.  "
                           "JPEG sampling factors must be 1..4", val2);
                return false;
            }
            cinfo->comp_info[ci].h_samp_factor = val1;
            cinfo->comp_info[ci].v_samp_factor = val2;

            while (arg[i] && arg[i] != ',') {
                /* advance to next segment of arg string */
                ++i;
            }
        } else {
            /* reached end of parameter, set remaining components
               to 1x1 sampling */
            cinfo->comp_info[ci].h_samp_factor = 1;
            cinfo->comp_info[ci].v_samp_factor = 1;
        }
    }
    return true;
}



static void
setupJpeg(struct jpeg_compress_struct * const cinfoP,
          struct jpeg_error_mgr       * const jerrP,
          struct CmdlineInfo            const cmdline,
          unsigned int                  const width,
          unsigned int                  const height,
          pixval                        const maxval,
          int                           const inputFmt,
          FILE *                        const ofP) {

    int quality;
    int qScaleFactor;

    /* Initialize the JPEG compression object with default error handling. */
    cinfoP->err = jpeg_std_error(jerrP);
    jpeg_create_compress(cinfoP);

    setupJpegSourceParameters(cinfoP, width, height, inputFmt);

    jpeg_set_defaults(cinfoP);

    cinfoP->data_precision = BITS_IN_JSAMPLE;
        /* we always rescale data to this */
    cinfoP->image_width = width;
    cinfoP->image_height = height;

    cinfoP->arith_code = cmdline.arithmetic;
    cinfoP->dct_method = cmdline.dctMethod;
    if (cmdline.tracelevel == 0 && cmdline.verbose)
        cinfoP->err->trace_level = 1;
    else cinfoP->err->trace_level = cmdline.tracelevel;
    if (cmdline.grayscale)
        jpeg_set_colorspace(cinfoP, JCS_GRAYSCALE);
    else if (cmdline.rgb)
        /* This is not legal if the input is not JCS_RGB too, i.e. it's PPM */
        jpeg_set_colorspace(cinfoP, JCS_RGB);
    else
        /* This default will be based on the in_color_space set above */
        jpeg_default_colorspace(cinfoP);
    if (cmdline.maxMemoryToUse != -1)
        cinfoP->mem->max_memory_to_use = cmdline.maxMemoryToUse;
    cinfoP->optimize_coding = cmdline.optimize;
    if (cmdline.quality == -1) {
        quality = 75;
        qScaleFactor = 100;
    } else {
        quality = cmdline.quality;
        qScaleFactor = jpeg_quality_scaling(cmdline.quality);
    }
    if (cmdline.smooth != -1)
        cinfoP->smoothing_factor = cmdline.smooth;

    /* Set quantization tables for selected quality. */
    /* Some or all may be overridden if user specified --qtables. */
    jpeg_set_quality(cinfoP, quality, cmdline.baseline);

    if (cmdline.qtablefile != NULL) {
        if (! readQuantTables(cinfoP, cmdline.qtablefile,
                              qScaleFactor, cmdline.baseline))
            pm_error("Can't use quantization table file '%s'.",
                     cmdline.qtablefile);
    }

    if (cmdline.qslots != NULL) {
        if (! setQuantSlots(cinfoP, cmdline.qslots))
            pm_error("Bad quantization-table-selectors parameter string '%s'.",
                     cmdline.qslots);
    }

    if (cmdline.sample != NULL) {
        if (! setSampleFactors(cinfoP, cmdline.sample))
            pm_error("Bad sample-factors parameters string '%s'.",
                     cmdline.sample);
    }

    if (cmdline.progressive)
        jpeg_simple_progression(cinfoP);

    if (cmdline.densitySpec)
        setupJpegDensity(cinfoP, cmdline.density);

    if (cmdline.scans != NULL) {
        const char * error;
        readScanScript(cinfoP, cmdline.scans, &error);
        if (error) {
            pm_message("Error in scan script '%s'.  %s", cmdline.scans, error);
            pm_strfree(error);
        }
    } else
        cinfoP->scan_info = NULL;

    /* Specify data destination for compression */
    jpeg_stdio_dest(cinfoP, ofP);

    if (cmdline.verbose)
        reportCompressor(*cinfoP);

    /* Start compressor */
    jpeg_start_compress(cinfoP, TRUE);

}



static void
writeExifHeader(struct jpeg_compress_struct * const cinfoP,
                const char *                  const exifFileNm) {
/*----------------------------------------------------------------------------
   Generate an APP1 marker in the JFIF output that is an Exif header.

   The contents of the Exif header are in the file with filespec
   'exifFileNm' (file spec and contents are not validated).

   exifFileNm = "-" means Standard Input.

   If the file contains just two bytes of zero, don't write any marker
   but don't recognize any error either.
-----------------------------------------------------------------------------*/
    FILE * exifFp;
    unsigned short length;

    exifFp = pm_openr(exifFileNm);

    pm_readbigshort(exifFp, (short*)&length);

    if (length == 0) {
        /* Special value meaning "no header" */
    } else if (length < 3)
        pm_error("Invalid length %u at start of exif file", length);
    else {
        unsigned char * exifData;
        size_t const dataLength = length - 2;
            /* Subtract 2 byte length field*/
        size_t rc;

        assert(dataLength > 0);

        MALLOCARRAY(exifData, dataLength);
        if (!exifData)
            pm_error("Unable to allocate %u bytes for exif header buffer",
                     (unsigned)dataLength);

        rc = fread(exifData, 1, dataLength, exifFp);

        if (rc != dataLength)
            pm_error("Premature end of file on exif header file.  Should be "
                     "%u bytes of data, read only %u",
                     (unsigned)dataLength, (unsigned)rc);

        jpeg_write_marker(cinfoP, JPEG_APP0+1,
                          (const JOCTET *) exifData, dataLength);

        free(exifData);
    }

    pm_close(exifFp);
}



static void
computeRescalingArray(JSAMPLE **                  const rescaleP,
                      pixval                      const maxval,
                      struct jpeg_compress_struct const cinfo) {
/*----------------------------------------------------------------------------
   Compute the rescaling array for a maximum pixval of 'maxval'.
   Allocate the memory for it too.
-----------------------------------------------------------------------------*/
    long const halfMaxval = maxval / 2;

    JSAMPLE * rescale;
    long val;

    MALLOCARRAY(rescale, maxval + 1);

    if (!rescale)
        pm_error("Failed to get memory for map of %u possible sample values",
                 maxval + 1);

    for (val = 0; val <= maxval; ++val) {
        /* The multiplication here must be done in 32 bits to avoid overflow */
        rescale[val] = (JSAMPLE) ((val*MAXJSAMPLE + halfMaxval)/maxval);
    }

    *rescaleP = rescale;
}



static void
translateRow(pixel        const pnm_buffer[],
             unsigned int const width,
             unsigned int const inputComponentCt,
             JSAMPLE      const translate[],
             JSAMPLE *    const jpegBuffer) {
/*----------------------------------------------------------------------------
   Convert the input row, in pnm format, to an output row in JPEG compressor
   input format.

   This is a byte for byte copy, translated through the array 'translate'.
-----------------------------------------------------------------------------*/
  unsigned int col;
  /* I'm not sure why the JPEG library data structures don't have some kind
     of pixel data structure (such that a row buffer is an array of pixels,
     rather than an array of samples).  But because of this, we have to
     index jpeg_buffer the old fashioned way.
     */

  switch (inputComponentCt) {
  case 1:
      for (col = 0; col < width; ++col)
          jpegBuffer[col] = translate[(int)PNM_GET1(pnm_buffer[col])];
      break;
  case 3:
      for (col = 0; col < width; ++col) {
          jpegBuffer[col * 3 + 0] =
              translate[(int)PPM_GETR(pnm_buffer[col])];
          jpegBuffer[col * 3 + 1] =
              translate[(int)PPM_GETG(pnm_buffer[col])];
          jpegBuffer[col * 3 + 2] =
              translate[(int)PPM_GETB(pnm_buffer[col])];
      }
      break;
  default:
      pm_error("INTERNAL ERROR: invalid number of input components in "
               "translate_row()");
  }

}



static void
convertScanLines(struct jpeg_compress_struct * const cinfoP,
                 FILE *                        const inputFileNm,
                 pixval                        const maxval,
                 int                           const inputFmt,
                 const JSAMPLE *               const xlateTable){
/*----------------------------------------------------------------------------
  Read scan lines from the input file, which is already opened in the
  netpbm library sense and ready for reading, and write them to the
  output JPEG object.  Translate the pnm sample values to JPEG sample
  values through the table xlateTable[].
-----------------------------------------------------------------------------*/
    xel * pnmBuffer;
        /* This malloc'ed array contains the row of the input image currently
           being processed, in pnm_readpnmrow format.
        */
    JSAMPLE * jpegBuffer;
        /* This malloc'ed array contains the row of the output image currently
           being processed, in JPEG compressor input format.
        */

    MALLOCARRAY(jpegBuffer, cinfoP->image_width * cinfoP->input_components);
    if (!jpegBuffer)
        pm_error("Unable to allocate buffer for a row of %u pixels, "
                 "%u samples each",
                 cinfoP->image_width, cinfoP->input_components);

    pnmBuffer = pnm_allocrow(cinfoP->image_width);

    while (cinfoP->next_scanline < cinfoP->image_height) {
        if (cinfoP->err->trace_level > 1)
            pm_message("Converting Row %d...", cinfoP->next_scanline);
        pnm_readpnmrow(inputFileNm, pnmBuffer, cinfoP->image_width,
                       maxval, inputFmt);
        translateRow(pnmBuffer,
                     cinfoP->image_width, cinfoP->input_components,
                     xlateTable,  jpegBuffer);
        jpeg_write_scanlines(cinfoP, &jpegBuffer, 1);
        if (cinfoP->err->trace_level > 1)
            pm_message("Done.");
    }

    pnm_freerow(pnmBuffer);
    free(jpegBuffer);
}



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

    struct CmdlineInfo cmdline;
    struct jpeg_compress_struct cinfo;
    struct jpeg_error_mgr jerr;
    FILE * ifP;
    FILE * ofP;
    int height;
        /* height of the input image in rows, as specified by its header */
    int width;
        /* width of the input image in columns, as specified by its header */
    pixval maxval;
        /* maximum value of an input pixel component, as specified by header */
    int inputFmt;
        /* The input format, as determined by its header.  */
    JSAMPLE *rescale;         /* => maxval-remapping array, or NULL */
        /* This is an array that maps each possible pixval in the input to
           a new value such that while the range of the input values is
           0 .. maxval, the range of the output values is 0 .. MAXJSAMPLE.
        */

    pm_proginit(&argc, argv);

    parseCommandLine(argc, argv, &cmdline);

    ifP = pm_openr(cmdline.inputFileNm);

    ofP = stdout;

    /* Open the pnm input */
    pnm_readpnminit(ifP, &width, &height, &maxval, &inputFmt);
    if (cmdline.verbose) {
        pm_message("Input file has format %c%c.\n"
                   "It has %d rows of %d columns of pixels "
                   "with max sample value of %d.",
                   (char) (inputFmt/256), (char) (inputFmt % 256),
                   height, width, maxval);
    }

    setupJpeg(&cinfo, &jerr, cmdline, width, height, maxval, inputFmt, ofP);

    computeRescalingArray(&rescale, maxval, cinfo);

    if (cmdline.comment)
        jpeg_write_marker(&cinfo, JPEG_COM, (const JOCTET *) cmdline.comment,
                          strlen(cmdline.comment));

    if (cmdline.exif)
        writeExifHeader(&cinfo, cmdline.exif);

    /* Translate and copy over the actual scanlines */
    convertScanLines(&cinfo, ifP, maxval, inputFmt, rescale);

    /* Finish compression and release memory */
    jpeg_finish_compress(&cinfo);
    jpeg_destroy_compress(&cinfo);

    if (cinfo.scan_info) {
        free((void*)cinfo.scan_info);
        cinfo.scan_info = NULL;
    }
    free(rescale);

    /* Close files, if we opened them */
    if (ifP != stdin)
        pm_close(ifP);

    free(cmdline.inputFileNm);
    /* Program may have exited with non-zero completion code via
       various function calls above.
    */
    return jerr.num_warnings > 0 ? EXIT_WARNING : EXIT_SUCCESS;
}