-
Notifications
You must be signed in to change notification settings - Fork 375
/
Copy pathpsimage.c
731 lines (662 loc) · 31.8 KB
/
psimage.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
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
/*--------------------------------------------------------------------
*
* Copyright (c) 1991-2025 by the GMT Team (https://www.generic-mapping-tools.org/team.html)
* See LICENSE.TXT file for copying and redistribution conditions.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; version 3 or any later version.
*
* 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 Lesser General Public License for more details.
*
* Contact info: www.generic-mapping-tools.org
*--------------------------------------------------------------------*/
/*
* Brief synopsis: psimage reads an EPS file or a 1, 8, 24, or 32 bit image and plots it on the page
*
* Author: Paul Wessel
* Date: 1-JAN-2010
* Version: 6 API
*/
#include "gmt_dev.h"
#include "longopt/psimage_inc.h"
#define THIS_MODULE_CLASSIC_NAME "psimage"
#define THIS_MODULE_MODERN_NAME "image"
#define THIS_MODULE_LIB "core"
#define THIS_MODULE_PURPOSE "Plot raster or EPS images"
#define THIS_MODULE_KEYS "<I{,>X}"
#define THIS_MODULE_NEEDS "jr"
#define THIS_MODULE_OPTIONS "->BJKOPRUVXYptxy" GMT_OPT("c")
struct PSIMAGE_CTRL {
struct PSIMAGE_In {
bool active;
char *file;
} In;
struct PSIMAGE_D { /* -D[g|j|n|x]<refpoint>+w[-]<width>[/<height>][+j<justify>][+n<n_columns>[/<n_rows>]][+o<dx>[/<dy>]][+r<dpi>[c]] */
bool active;
struct GMT_REFPOINT *refpoint;
double off[2];
int justify;
bool interpolate;
double dim[2];
double dpi;
unsigned int n_columns, n_rows;
} D;
struct PSIMAGE_F { /* -F[+c<clearance>][+g<fill>][+i[<off>/][<pen>]][+p[<pen>]][+r[<radius>]][+s[<dx>/<dy>/][<shade>]][+d] */
bool active;
struct GMT_MAP_PANEL *panel;
} F;
struct PSIMAGE_G { /* -G<rgb>[+b|f|t] */
bool active;
bool set[3];
double rgb[3][4];
} G;
struct PSIMAGE_I { /* -I */
bool active;
} I;
struct PSIMAGE_M { /* -M */
bool active;
} M;
};
#define PSIMAGE_BGD 0
#define PSIMAGE_FGD 1
#define PSIMAGE_TRA 2
static void *New_Ctrl (struct GMT_CTRL *GMT) { /* Allocate and initialize a new control structure */
struct PSIMAGE_CTRL *C;
C = gmt_M_memory (GMT, NULL, 1, struct PSIMAGE_CTRL);
/* Initialize values whose defaults are not 0/false/NULL */
C->G.rgb[PSIMAGE_FGD][0] = C->G.rgb[PSIMAGE_BGD][0] = C->G.rgb[PSIMAGE_TRA][0] = -2; /* All turned off */
C->D.n_columns = C->D.n_rows = 1;
return (C);
}
static void Free_Ctrl (struct GMT_CTRL *GMT, struct PSIMAGE_CTRL *C) { /* Deallocate control structure */
if (!C) return;
gmt_M_str_free (C->In.file);
gmt_free_refpoint (GMT, &C->D.refpoint);
gmt_M_free (GMT, C->F.panel);
gmt_M_free (GMT, C);
}
static int usage (struct GMTAPI_CTRL *API, int level) {
/* This displays the psimage synopsis and optionally full usage information */
const char *name = gmt_show_name_and_purpose (API, THIS_MODULE_LIB, THIS_MODULE_CLASSIC_NAME, THIS_MODULE_PURPOSE);
if (level == GMT_MODULE_PURPOSE) return (GMT_NOERROR);
GMT_Usage (API, 0, "usage: %s <imagefile> [%s] [-D%s+w[-]<width>[/<height>][+n<n_columns>[/<n_rows>]]%s+r<dpi>[c]] [-F%s] "
"[-G[<color>][+b|f|t]] [-I] [%s] %s[-M] %s%s[%s] [%s] [%s] [%s] [%s] %s[%s] [%s] [%s]\n",
name, GMT_B_OPT, GMT_XYANCHOR, GMT_OFFSET, GMT_PANEL, GMT_J_OPT, API->K_OPT, API->O_OPT, API->P_OPT,
GMT_Rgeoz_OPT, GMT_U_OPT, GMT_V_OPT, GMT_X_OPT, GMT_Y_OPT, API->c_OPT, GMT_p_OPT, GMT_t_OPT, GMT_PAR_OPT);
if (level == GMT_SYNOPSIS) return (GMT_MODULE_SYNOPSIS);
GMT_Message (API, GMT_TIME_NONE, " REQUIRED ARGUMENTS:\n");
GMT_Usage (API, 1, "\n<imagefile> is an EPS or raster image file.");
GMT_Message (API, GMT_TIME_NONE, "\n OPTIONAL ARGUMENTS:\n");
GMT_Option (API, "B-");
gmt_refpoint_syntax (API->GMT, "\n-D", "Specify reference point for the image", GMT_ANCHOR_IMAGE, 3);
GMT_Usage (API, -2, "Set width (and height) of image with +w[-]<width>/[/<height>]. If <width> = 0 or <height> = 0 "
"then the original aspect ratio is maintained. If <width> (or <height>) is < 0 "
"then we use absolute value as width (or height) and interpolate the image in PostScript. Alternatively:");
GMT_Usage (API, 3, "+r Append image dpi (dots per inch) or append c if dots per cm.");
GMT_Usage (API, 3, "+n Append <n_columns>[/<n_rows>] to replicate image <n_columns> by <n_rows> times [Default is no replication].");
GMT_Usage (API, -2, "Notes:(1) If neither +w nor +r are set then we default to the default dpu [%lg%c] "
"(2) If <width> is negative then we interpolate image to device resolution.\n",
API->GMT->current.setting.graphics_dpu, API->GMT->current.setting.graphics_dpu_unit);
gmt_mappanel_syntax (API->GMT, 'F', "Specify a rectangular panel behind the image", 1);
GMT_Usage (API, 1, "\n-G[<color>][+b|f|t]");
GMT_Usage (API, -2, "Change some pixels to be transparent (or to optional <color>) depending on selected modifier (repeatable):");
GMT_Usage (API, 3, "+b Replace background color by <color> or make it transparent (1-bit images only).");
GMT_Usage (API, 3, "+f Replace foreground color by <color> or make it transparent (1-bit images only).");
GMT_Usage (API, 3, "+t Indicate the given <color> should be made transparent (for color images) [no transparency].");
GMT_Usage (API, 1, "\n-I Invert 1-bit images (does not affect 8 or 24-bit images).");
GMT_Option (API, "J-Z,K");
GMT_Usage (API, 1, "\n-M Force color -> monochrome image using YIQ-transformation.");
GMT_Option (API, "O,P,R,U,V,X,c,p");
if (gmt_M_showusage (API)) GMT_Usage (API, -2, "Note: Requires -R and -J for proper functioning.");
GMT_Option (API, "t,.");
return (GMT_MODULE_USAGE);
}
static int parse (struct GMT_CTRL *GMT, struct PSIMAGE_CTRL *Ctrl, struct GMT_OPTION *options) {
/* This parses the options provided to psimage and sets parameters in Ctrl.
* Note Ctrl has already been initialized and non-zero default values set.
* Any GMT common options will override values set previously by other commands.
* It also replaces any file names specified as input or output with the data ID
* returned when registering these sources/destinations with the API.
*/
unsigned int n_errors = 0, ind = PSIMAGE_FGD, k = 0;
int n;
char cstring[GMT_LEN256] = {""}, fstring[GMT_LEN256] = {""}, *p = NULL;
char txt_a[GMT_LEN256] = {""}, txt_b[GMT_LEN256] = {""}, txt_c[4] = {""};
struct GMT_OPTION *opt = NULL;
struct GMTAPI_CTRL *API = GMT->parent;
/* Because of backwards compatibility with deprecated -C optino and upgraded -F option we need to
* per-scane for those options and capture their arguments so that later we can handle the backwards
* checking without worry about option order. */
for (opt = options; opt; opt = opt->next) { /* Process all the options given */
if (opt->option == 'C') { /* Deprecated */
GMT_Report (API, GMT_MSG_COMPAT, "-C option is deprecated, use -Dx instead.\n");
n = sscanf (opt->arg, "%[^/]/%[^/]/%2s", txt_a, txt_b, txt_c);
sprintf (cstring, "x%s/%s", txt_a, txt_b); /* Build +x modifier* for -D */
if (n == 3) { /* Append modifier +j with given argument */
strcat (cstring, "+j");
strcat (cstring, txt_c);
}
}
else if (opt->option == 'F') { /* Check for deprecated version of -F<pen> */
if (gmt_M_compat_check (GMT, 5) && opt->arg[0] != '+') { /* Warn but process old -F<pen> */
GMT_Report (API, GMT_MSG_COMPAT, "The -F<pen> option is deprecated but was accepted. Use -F modifier +p<pen> instead\n");
sprintf (fstring, "+c0+p%s", opt->arg); /* Reformat using new syntax */
}
else /* Expected syntax given (we hope) */
strncpy (fstring, opt->arg, GMT_LEN256-1);
}
}
for (opt = options; opt; opt = opt->next) { /* Process all the options given */
switch (opt->option) {
case '<': /* Input files */
n_errors += gmt_M_repeated_module_option (API, Ctrl->In.active);
n_errors += gmt_get_required_file (GMT, opt->arg, opt->option, 0, GMT_IS_IMAGE, GMT_IN, GMT_FILE_REMOTE, &(Ctrl->In.file));
break;
/* Processes program-specific parameters */
case 'D':
n_errors += gmt_M_repeated_module_option (API, Ctrl->D.active);
p = (cstring[0]) ? cstring : opt->arg; /* If -C was used then cstring was set above */
if ((Ctrl->D.refpoint = gmt_get_refpoint (GMT, p, 'D')) == NULL) { /* Failed basic parsing */
GMT_Report (API, GMT_MSG_ERROR, "Option -D: Basic parsing of reference point in %s failed\n", opt->arg);
n_errors++;
}
else { /* args are now [+j<justify>][+n<n_columns>[/<n_rows>]][+o<dx>[/<dy>]][+r<dpi>[c]][+[-]<width>] */
char string[GMT_LEN256] = {""};
if (gmt_validate_modifiers (GMT, Ctrl->D.refpoint->args, 'D', "jnorw", GMT_MSG_ERROR)) n_errors++;
/* Required modifier +w OR +r */
if (gmt_get_modifier (Ctrl->D.refpoint->args, 'w', string)) {
if ((n = gmt_get_pair (GMT, string, GMT_PAIR_DIM_NODUP, Ctrl->D.dim)) < 0) n_errors++;
if (Ctrl->D.dim[GMT_X] < 0.0) { /* Negative width means PS interpolation */
Ctrl->D.dim[GMT_X] = -Ctrl->D.dim[GMT_X];
Ctrl->D.interpolate = true;
}
else if (Ctrl->D.dim[GMT_Y] < 0.0) { /* Negative height means PS interpolation */
Ctrl->D.dim[GMT_Y] = -Ctrl->D.dim[GMT_Y];
Ctrl->D.interpolate = true;
}
}
else if (gmt_get_modifier (Ctrl->D.refpoint->args, 'r', string)) {
Ctrl->D.dpi = atof (string);
if (strchr (string, 'c')) Ctrl->D.dpi *= 2.54; /* Convert dpc to dpi */
}
/* Optional modifiers +j, +n, +o */
if (gmt_get_modifier (Ctrl->D.refpoint->args, 'j', string))
Ctrl->D.justify = gmt_just_decode (GMT, string, PSL_NO_DEF);
else /* With -Dj or -DJ, set default to reference (mirrored) justify point, else BL */
Ctrl->D.justify = gmt_M_just_default (GMT, Ctrl->D.refpoint, PSL_BL);
if (gmt_get_modifier (Ctrl->D.refpoint->args, 'n', string)) {
n = sscanf (string, "%d/%d", &Ctrl->D.n_columns, &Ctrl->D.n_rows);
if (n == 1) Ctrl->D.n_rows = Ctrl->D.n_columns;
}
if (gmt_get_modifier (Ctrl->D.refpoint->args, 'o', string)) {
if ((n = gmt_get_pair (GMT, string, GMT_PAIR_DIM_DUP, Ctrl->D.off)) < 0) n_errors++;
}
}
break;
case 'E': /* Specify image dpi */
GMT_Report (API, GMT_MSG_COMPAT, "The -E option is deprecated but is accepted.\n");
GMT_Report (API, GMT_MSG_COMPAT, "For the current -D syntax you should use -D modifier +r instead.\n");
GMT_Report (API, GMT_MSG_COMPAT, "Note: You cannot mix new-style modifiers (+r) with the old-style -C option.\n");
Ctrl->D.dpi = atof (opt->arg);
break;
case 'F': /* Specify panel behind image */
n_errors += gmt_M_repeated_module_option (API, Ctrl->F.active);
if (gmt_getpanel (GMT, opt->option, fstring, &(Ctrl->F.panel))) { /* fstring set above */
gmt_mappanel_syntax (GMT, 'F', "Specify a rectangular panel behind the image", 1);
n_errors++;
}
break;
case 'G': /* Background/foreground color for 1-bit images [Repeatable] */
Ctrl->G.active = true;
if ((p = strstr (opt->arg, "+b"))) /* Background color (or transparency) selected */
ind = PSIMAGE_BGD, k = 0, p[0] = '\0';
else if ((p = strstr (opt->arg, "+f"))) /* Foreground color (or transparency) selected */
ind = PSIMAGE_FGD, k = 0, p[0] = '\0';
else if ((p = strstr (opt->arg, "+t"))) { /* Transparency color specified */
ind = PSIMAGE_TRA; k = 0; p[0] = '\0';
if (opt->arg[0] == '\0') {
GMT_Report (API, GMT_MSG_ERROR, "Option -G: Must specify a color when +t is used\n");
n_errors++;
}
}
else if (gmt_M_compat_check (GMT, 5)) { /* Must check old-style arguments */
if (opt->arg[0] == '-' || gmt_colorname2index (GMT, opt->arg) >= 0 || !gmt_getrgb (GMT, opt->arg, Ctrl->G.rgb[PSIMAGE_FGD])) /* Foreground color selected as default */
ind = PSIMAGE_FGD, k = 0;
else if (opt->arg[0] == 'f') /* Foreground color selected */
ind = PSIMAGE_FGD, k = 1;
else if (opt->arg[0] == 'b') /* Background color (or transparency) selected */
ind = PSIMAGE_BGD, k = 1;
else if (opt->arg[0] == 't') /* Transparency color specified */
ind = PSIMAGE_TRA, k = 1;
}
else /* Just -G[<color>] for foreground */
ind = PSIMAGE_FGD, k = 0;
if (opt->arg[k] == '\0') /* No color given means set transparency */
Ctrl->G.rgb[ind][0] = -1;
else if (opt->arg[k] == '-') { /* - means set transparency but only in GMT 5 and earlier */
if (gmt_M_compat_check (GMT, 5)) { /* - means set transparency in GMT 5 and earlier */
Ctrl->G.rgb[ind][0] = -1;
GMT_Report (API, GMT_MSG_COMPAT, "-G with color - for transparency is deprecated; give no <color> instead.\n");
}
else {
GMT_Report (API, GMT_MSG_ERROR, "Option -G: - is not a color\n");
n_errors++;
}
}
else if (gmt_getrgb (GMT, &opt->arg[k], Ctrl->G.rgb[ind])) {
gmt_rgb_syntax (GMT, 'G', " ");
n_errors++;
}
n_errors += gmt_M_repeated_module_option (API, Ctrl->G.set[ind]);
if (p) p[0] = '+'; /* Restore modifier */
break;
case 'I': /* Invert 1-bit images */
n_errors += gmt_M_repeated_module_option (API, Ctrl->I.active);
n_errors += gmt_get_no_argument (GMT, opt->arg, opt->option, 0);
break;
case 'M': /* Monochrome image */
n_errors += gmt_M_repeated_module_option (API, Ctrl->M.active);
n_errors += gmt_get_no_argument (GMT, opt->arg, opt->option, 0);
break;
case 'N': /* Replicate image */
GMT_Report (API, GMT_MSG_COMPAT, "-N option is deprecated; use -D modifier +n instead.\n");
n = sscanf (opt->arg, "%d/%d", &Ctrl->D.n_columns, &Ctrl->D.n_rows);
if (n == 1) Ctrl->D.n_rows = Ctrl->D.n_columns;
n_errors += gmt_M_check_condition (GMT, n < 1, "Option -N: Must give values for replication\n");
break;
case 'W': /* Image width */
GMT_Report (API, GMT_MSG_COMPAT, "-W option is deprecated; use -D modifier +w instead.\n");
if ((n = gmt_get_pair (GMT, opt->arg, GMT_PAIR_DIM_NODUP, Ctrl->D.dim)) < 0) n_errors++;
if (Ctrl->D.dim[GMT_X] < 0.0) {
Ctrl->D.dim[GMT_X] = -Ctrl->D.dim[GMT_X];
Ctrl->D.interpolate = true;
}
else if (Ctrl->D.dim[GMT_Y] < 0.0) {
Ctrl->D.dim[GMT_Y] = -Ctrl->D.dim[GMT_Y];
Ctrl->D.interpolate = true;
}
break;
default: /* Report bad options */
n_errors += gmt_default_option_error (GMT, opt);
break;
}
}
if (Ctrl->D.dim[GMT_X] <= 0.0 && Ctrl->D.dim[GMT_Y] <= 0.0 && Ctrl->D.dpi <= 0.0) { /* No width or dpi set, default to GMT dpi */
Ctrl->D.dpi = GMT->current.setting.graphics_dpu;
if (GMT->current.setting.graphics_dpu_unit == 'c') Ctrl->D.dpi *= 2.54; /* Convert dpc to dpi */
}
if (!Ctrl->D.active) { /* Old syntax without reference point implies -Dx0/0 */
Ctrl->D.refpoint = gmt_get_refpoint (GMT, "x0/0", 'D'); /* Default if no -D given */
Ctrl->D.active = true;
}
/* Check that the options selected are mutually consistent */
if (Ctrl->D.refpoint && Ctrl->D.refpoint->mode != GMT_REFPOINT_PLOT) { /* Anything other than -Dx need -R -J; other cases don't */
static char *kind = GMT_REFPOINT_CODES; /* The five types of refpoint specifications */
n_errors += gmt_M_check_condition (GMT, !GMT->common.R.active[RSET], "-D%c requires the -R option\n", kind[Ctrl->D.refpoint->mode]);
n_errors += gmt_M_check_condition (GMT, !GMT->common.J.active, "-D%c requires the -J option\n", kind[Ctrl->D.refpoint->mode]);
}
n_errors += gmt_M_check_condition (GMT, !Ctrl->In.active, "Must specify a single input raster or EPS file\n");
n_errors += gmt_M_check_condition (GMT, Ctrl->D.n_columns < 1 || Ctrl->D.n_rows < 1,
"Option -D: Must specify positive values for replication with +n\n");
n_errors += gmt_M_check_condition (GMT, Ctrl->G.rgb[PSIMAGE_FGD][0] == -1 && Ctrl->G.rgb[PSIMAGE_BGD][0] == -1,
"Option -G: Only one of fore/back-ground can be transparent for 1-bit images\n");
return (n_errors ? GMT_PARSE_ERROR : GMT_NOERROR);
}
GMT_LOCAL int file_is_eps (struct GMT_CTRL *GMT, char **file) { /* Returns 1 if it is an EPS file; 0 for any other file.
Returns -1 on read error */
FILE *fp = NULL;
unsigned char c[4], magic_ps[4] = {'%', '!', 'P', 'S'};
char *F = *file;
if (F == NULL || F[0] == '\0') return GMT_NOTSET; /* Nothing given */
if (gmt_M_file_is_memory (F)) return (0); /* Special passing of image */
if (gmt_file_is_cache (GMT->parent, F)) { /* Must download, then modify the name */
char *tmp = strdup (&F[1]);
(void)gmt_download_file_if_not_found (GMT, F, 0);
gmt_M_str_free (*file);
*file = F = tmp;
}
if (strstr (F, "=gd")) return (0); /* Passing an image via GDAL cannot be EPS */
if (strstr (F, "+b")) return (0); /* Band request of an image cannot be EPS */
if ((fp = gmt_fopen (GMT, F, "rb")) == NULL) {
GMT_Report (GMT->parent, GMT_MSG_ERROR, "Cannot open file %s\n", F);
return (GMT_NOTSET);
}
if (gmt_M_fread (c, 1U, 4U, fp) != 4U) {
GMT_Report (GMT->parent, GMT_MSG_ERROR, "Could not read 4 bytes from file %s\n", F);
gmt_fclose (GMT, fp);
return (GMT_NOTSET);
}
gmt_fclose (GMT, fp);
/* Note: cannot use gmt_M_same_rgb here, because that requires doubles */
if (c[0] == magic_ps[0] && c[1] == magic_ps[1] && c[2] == magic_ps[2] && c[3] == magic_ps[3]) return(1);
return (0);
}
#define Return(code) {gmt_M_free (GMT, table); return (code);}
GMT_LOCAL int psimage_find_unique_color (struct GMT_CTRL *GMT, unsigned char *rgba, size_t n, int *r, int *g, int *b) {
size_t i, j;
int idx;
bool trans = false;
unsigned char *table = NULL;
table = gmt_M_memory (GMT, NULL, 256*256*256, unsigned char); /* Get table all initialized to zero */
/* Check off all the non-transparent colors, store the transparent one */
*r = *g = *b = 0;
for (i = j = 0; i < n; i++, j+=4) {
if (rgba[j+3] == 0)
*r = rgba[j], *g = rgba[j+1], *b = rgba[j+2], trans = true;
else {
idx = 256 * (256*(int)rgba[j] + (int)rgba[j+1]) + (int)rgba[j+2];
table[idx] = true;
}
}
/* Was there a transparent color? */
if (!trans) Return (0);
/* Was the transparent color unique? */
idx = 256 * (256*(*r) + (*g)) + (*b);
if (!table[idx]) Return (1);
/* Find a unique color */
idx = 0;
for (*r = 0; *r < 256; (*r)++) {
for (*g = 0; *g < 256; (*g)++) {
for (*b = 0; *b < 256; (*b)++, idx++) {
if (!table[idx]) Return (2);
}
}
}
Return (3);
}
#undef Return
#define bailout(code) {gmt_M_free_options (mode); return (code);}
#define Return(code) {Free_Ctrl (GMT, Ctrl); gmt_end_module (GMT, GMT_cpy); bailout (code);}
EXTERN_MSC unsigned char *psl_gray_encode (struct PSL_CTRL *PSL, size_t *nbytes, unsigned char *input);
EXTERN_MSC int GMT_psimage (void *V_API, int mode, void *args) {
int i, j, PS_interpolate = 1, PS_transparent = 1, is_eps = 0, error = 0, is_gdal = 0;
int k, r = 0, g = 0, b = 0, has_trans = 0;
unsigned int row, col;
unsigned char colormap[4*256];
size_t n;
bool free_GMT = false, did_gray = false;
double x, y, wesn[4], Rwesn[4];
unsigned char *picture = NULL, *buffer = NULL;
char path[PATH_MAX] = {""}, Jarg[GMT_LEN128] = {""}, *file = NULL, *c = NULL;
struct imageinfo header;
struct PSIMAGE_CTRL *Ctrl = NULL;
struct GMT_CTRL *GMT = NULL, *GMT_cpy = NULL; /* General GMT internal parameters */
struct GMT_OPTION *options = NULL;
struct PSL_CTRL *PSL = NULL; /* General PSL internal parameters */
struct GMT_IMAGE *I = NULL; /* A GMT image datatype */
struct GMTAPI_CTRL *API = gmt_get_api_ptr (V_API); /* Cast from void to GMTAPI_CTRL pointer */
/*----------------------- Standard module initialization and parsing ----------------------*/
if (API == NULL) return (GMT_NOT_A_SESSION);
if (mode == GMT_MODULE_PURPOSE) return (usage (API, GMT_MODULE_PURPOSE)); /* Return the purpose of program */
options = GMT_Create_Options (API, mode, args); if (API->error) return (API->error); /* Set or get option list */
if ((error = gmt_report_usage (API, options, 0, usage)) != GMT_NOERROR) bailout (error); /* Give usage if requested */
/* Parse the command-line arguments; return if errors are encountered */
if ((GMT = gmt_init_module (API, THIS_MODULE_LIB, THIS_MODULE_CLASSIC_NAME, THIS_MODULE_KEYS, THIS_MODULE_NEEDS, module_kw, &options, &GMT_cpy)) == NULL) bailout (API->error); /* Save current state */
if (GMT_Parse_Common (API, THIS_MODULE_OPTIONS, options)) Return (API->error);
Ctrl = New_Ctrl (GMT); /* Allocate and initialize a new control structure */
if ((error = parse (GMT, Ctrl, options)) != 0) Return (error);
/*---------------------------- This is the psimage main code ----------------------------*/
PS_interpolate = (Ctrl->D.interpolate) ? -1 : +1;
file = strdup (Ctrl->In.file);
if ((c = strstr (file, "=gd"))) {
is_gdal = true;
c[0] = '\0'; /* Chop off unnecessary =gd mandate */
}
is_eps = file_is_eps (GMT, &file); /* Determine if this is an EPS file or other */
if (is_eps < 0) {
GMT_Report (API, GMT_MSG_ERROR, "Cannot find/open/read file %s\n", file);
gmt_M_str_free (file);
Return (GMT_RUNTIME_ERROR);
}
memset (&header, 0, sizeof(struct imageinfo)); /* initialize struct */
if (is_eps) { /* Read an EPS file */
GMT_Report (API, GMT_MSG_INFORMATION, "Processing input EPS file\n");
if (gmt_getdatapath (GMT, file, path, R_OK) == NULL) {
GMT_Report (API, GMT_MSG_ERROR, "Cannot find/open file %s.\n", file);
gmt_M_str_free (file);
Return (GMT_FILE_NOT_FOUND);
}
if (PSL_loadeps (PSL, path, &header, &picture)) {
GMT_Report (API, GMT_MSG_ERROR, "Trouble loading EPS file %s!\n", path);
gmt_M_str_free (file);
Return (GMT_IMAGE_READ_ERROR);
}
}
else { /* Read a raster image */
bool R_save = GMT->common.R.active[RSET];
GMT->common.R.active[RSET] = false; /* Temporarily unset any active -R since we do not want it to be used for a subset of this image! */
GMT_Report (API, GMT_MSG_INFORMATION, "Processing input raster via GDAL\n");
if (is_gdal) { /* Need full name since there may be band requests */
gmt_M_str_free (file);
file = strdup (Ctrl->In.file);
}
gmt_set_pad (GMT, 0U); /* Temporary turn off padding (and thus BC setting) since we will use image exactly as is */
if ((I = GMT_Read_Data (API, GMT_IS_IMAGE, GMT_IS_FILE, GMT_IS_SURFACE, GMT_CONTAINER_AND_DATA, NULL, file, NULL)) == NULL) {
gmt_M_str_free (file);
Return (API->error);
}
GMT->common.R.active[RSET] = R_save; /* Reset */
gmt_set_pad (GMT, API->pad); /* Reset to GMT default */
/* Handle transparent images */
if (I->colormap != NULL) { /* Image has a color map */
/* Convert colormap from integer to unsigned char and count colors */
n = gmt_unpack_rgbcolors (GMT, I, colormap); /* colormap will be RGBARGBA... */
if (n == 2 && Ctrl->G.active) { /* Replace back or fore-ground color with color given in -G, or catch selection for transparency */
if (Ctrl->G.rgb[PSIMAGE_TRA][0] != -2) {
GMT_Report (API, GMT_MSG_WARNING, "Your -G<color>+t is ignored for 1-bit images; see +b/+f modifiers instead\n");
}
for (unsigned int k = PSIMAGE_BGD; k <= PSIMAGE_FGD; k++) {
if (Ctrl->G.rgb[k][0] == -1) { /* Want this color to be transparent */
has_trans = 1; r = colormap[4*k]; g = colormap[1+4*k]; b = colormap[2+4*k];
}
else if (Ctrl->G.rgb[k][0] >= 0) /* If we changed this color, update it, else use what was given in the colormap */
for (n = 0; n < 3; n++) colormap[n+4*k] = gmt_M_u255(Ctrl->G.rgb[k][n]); /* Do not override the A entry, just R/G/B */
}
}
if (!Ctrl->G.active) has_trans = psimage_find_unique_color (GMT, colormap, n, &r, &g, &b);
/* Expand 8-bit indexed image to 24-bit image */
I->data = gmt_M_memory (GMT, I->data, 3 * I->header->nm, unsigned char);
n = 3 * I->header->nm - 1;
for (j = (int)I->header->nm - 1; j >= 0; j--) {
k = 4 * I->data[j] + 3;
if (has_trans && colormap[k] == 0) /* Found a transparent pixel, set its color to the transparent color found/selected earlier */
I->data[n--] = (unsigned char)b, I->data[n--] = (unsigned char)g, I->data[n--] = (unsigned char)r;
else
I->data[n--] = colormap[--k], I->data[n--] = colormap[--k], I->data[n--] = colormap[--k];
}
I->header->n_bands = 3;
}
else if (I->header->n_bands == 4) { /* RGBA image, with a color map */
uint64_t n4, j4;
if (!Ctrl->G.active) has_trans = psimage_find_unique_color (GMT, I->data, I->header->nm, &r, &g, &b);
for (j4 = n4 = 0; j4 < 4 * I->header->nm; j4++) { /* Reduce image from 32- to 24-bit */
if (has_trans && I->data[j4+3] == 0)
I->data[n4++] = (unsigned char)r, I->data[n4++] = (unsigned char)g, I->data[n4++] = (unsigned char)b, j4 += 3;
else
I->data[n4++] = I->data[j4++], I->data[n4++] = I->data[j4++], I->data[n4++] = I->data[j4++];
}
I->header->n_bands = 3;
}
/* If a transparent color was found, we replace it with a unique one */
if (has_trans) {
Ctrl->G.rgb[PSIMAGE_TRA][0] = gmt_M_is255(r);
Ctrl->G.rgb[PSIMAGE_TRA][1] = gmt_M_is255(g);
Ctrl->G.rgb[PSIMAGE_TRA][2] = gmt_M_is255(b);
}
picture = (unsigned char *)I->data;
header.width = I->header->n_columns;
header.height = I->header->n_rows;
header.depth = (int)I->header->n_bands * 8;
}
if (Ctrl->M.active && header.depth == 24) { /* Downgrade to grayshade image */
did_gray = true;
n = 3 * header.width * header.height;
buffer = psl_gray_encode (PSL, &n, picture);
header.depth = 8;
if (is_eps) PSL_free (picture); /* EPS ile */
else { /* Got it via GMT_Read_Data */
if (GMT_Destroy_Data (API, &I) != GMT_NOERROR) {
gmt_M_str_free (file);
Return (API->error);
}
}
picture = buffer;
}
/* Add transparent color at beginning, if requested */
if (Ctrl->G.rgb[PSIMAGE_TRA][0] < 0)
PS_transparent = 1;
else if (header.depth >= 8) {
PS_transparent = -1;
j = header.depth / 8;
n = j * (header.width * header.height + 1);
buffer = gmt_M_memory (GMT, NULL, n, unsigned char);
for (i = 0; i < j; i++) buffer[i] = (unsigned char)rint(255 * Ctrl->G.rgb[PSIMAGE_TRA][i]);
gmt_M_memcpy (&(buffer[j]), picture, n - j, unsigned char);
if (GMT_Destroy_Data (API, &I) != GMT_NOERROR) { /* If I is NULL then nothing is done */
gmt_M_str_free (file);
Return (API->error);
}
picture = buffer;
free_GMT = true;
}
else
GMT_Report (API, GMT_MSG_ERROR, "Can only do transparent color for 8- or 24-bit images. -Gt ignored\n");
if (Ctrl->D.dpi > 0.0) {
Ctrl->D.dim[GMT_X] = (double) header.width / Ctrl->D.dpi;
Ctrl->D.dim[GMT_Y] = (double) header.height / Ctrl->D.dpi;
}
if (Ctrl->D.dim[GMT_X] == 0.0) Ctrl->D.dim[GMT_X] = header.width * Ctrl->D.dim[GMT_Y] / header.height;
else if (Ctrl->D.dim[GMT_Y] == 0.0) Ctrl->D.dim[GMT_Y] = header.height * Ctrl->D.dim[GMT_X] / header.width;
/* The following is needed to have psimage work correctly in perspective */
gmt_set_basemap_orders (GMT, GMT_BASEMAP_FRAME_AFTER, GMT_BASEMAP_GRID_AFTER, GMT_BASEMAP_ANNOT_AFTER);
gmt_M_memset (wesn, 4, double);
if (!(GMT->common.R.active[RSET] && GMT->common.J.active)) { /* When no projection specified, use fake linear projection */
GMT->common.R.active[RSET] = true;
GMT->common.J.active = false;
gmt_parse_common_options (GMT, "J", 'J', "X1i");
gmt_adjust_refpoint (GMT, Ctrl->D.refpoint, Ctrl->D.dim, Ctrl->D.off, Ctrl->D.justify, PSL_BL); /* Adjust refpoint to BL corner */
wesn[XHI] = Ctrl->D.refpoint->x + Ctrl->D.n_columns * Ctrl->D.dim[GMT_X];
wesn[YHI] = Ctrl->D.refpoint->y + Ctrl->D.n_rows * Ctrl->D.dim[GMT_Y];
gmt_M_memcpy (Rwesn, wesn, 4U, double);
strncpy (Jarg, "X1i", GMT_LEN128);
if (gmt_map_setup (GMT, wesn)) {
if (free_GMT)
gmt_M_free (GMT, picture);
else if (is_eps || did_gray)
PSL_free (picture);
gmt_M_str_free (file);
Return (GMT_PROJECTION_ERROR);
}
if ((PSL = gmt_plotinit (GMT, options)) == NULL) {
if (free_GMT)
gmt_M_free (GMT, picture);
else if (is_eps || did_gray)
PSL_free (picture);
gmt_M_str_free (file);
Return (GMT_RUNTIME_ERROR);
}
gmt_plane_perspective (GMT, GMT->current.proj.z_project.view_plane, GMT->current.proj.z_level);
}
else { /* First use current projection, project, then use fake projection */
gmt_M_memcpy (Rwesn, GMT->common.R.wesn, 4U, double);
strncpy (Jarg, GMT->common.J.string, GMT_LEN128);
if (gmt_map_setup (GMT, GMT->common.R.wesn)) {
if (free_GMT)
gmt_M_free (GMT, picture);
else if (is_eps || did_gray)
PSL_free (picture);
gmt_M_str_free (file);
Return (GMT_PROJECTION_ERROR);
}
gmt_set_refpoint (GMT, Ctrl->D.refpoint); /* Finalize reference point plot coordinates, if needed */
gmt_adjust_refpoint (GMT, Ctrl->D.refpoint, Ctrl->D.dim, Ctrl->D.off, Ctrl->D.justify, PSL_BL); /* Adjust refpoint to BL corner */
if ((PSL = gmt_plotinit (GMT, options)) == NULL) {
if (free_GMT)
gmt_M_free (GMT, picture);
else if (is_eps || did_gray)
PSL_free (picture);
gmt_M_str_free (file);
Return (GMT_RUNTIME_ERROR);
}
gmt_plane_perspective (GMT, GMT->current.proj.z_project.view_plane, GMT->current.proj.z_level);
gmt_plotcanvas (GMT); /* Fill canvas if requested */
gmt_map_basemap (GMT); /* Draw basemap if requested */
GMT->common.J.active = false;
gmt_parse_common_options (GMT, "J", 'J', "X1i");
wesn[XHI] = Ctrl->D.refpoint->x + Ctrl->D.n_columns * Ctrl->D.dim[GMT_X];
wesn[YHI] = Ctrl->D.refpoint->y + Ctrl->D.n_rows * Ctrl->D.dim[GMT_Y];
GMT->common.R.active[RSET] = GMT->common.J.active = true;
if (gmt_map_setup (GMT, wesn)) {
if (free_GMT)
gmt_M_free (GMT, picture);
else if (is_eps || did_gray)
PSL_free (picture);
gmt_M_str_free (file);
Return (GMT_PROJECTION_ERROR);
}
}
if (Ctrl->F.active) { /* Draw frame, fill only */
Ctrl->F.panel->width = Ctrl->D.n_columns * Ctrl->D.dim[GMT_X]; Ctrl->F.panel->height = Ctrl->D.n_rows * Ctrl->D.dim[GMT_Y];
gmt_draw_map_panel (GMT, Ctrl->D.refpoint->x + 0.5 * Ctrl->F.panel->width, Ctrl->D.refpoint->y + 0.5 * Ctrl->F.panel->height, 1U, Ctrl->F.panel);
}
for (row = 0; row < Ctrl->D.n_rows; row++) {
y = Ctrl->D.refpoint->y + row * Ctrl->D.dim[GMT_Y];
if (Ctrl->D.n_rows > 1) GMT_Report (API, GMT_MSG_INFORMATION, "Replicating image %d times for row %d\n", Ctrl->D.n_columns, row);
for (col = 0; col < Ctrl->D.n_columns; col++) {
x = Ctrl->D.refpoint->x + col * Ctrl->D.dim[GMT_X];
if (header.depth == 0)
PSL_plotepsimage (PSL, x, y, Ctrl->D.dim[GMT_X], Ctrl->D.dim[GMT_Y], PSL_BL, picture, &header);
else if (header.depth == 1) {
/* Invert is opposite from what is expected. This is to match the behavior of -Gp */
if (Ctrl->I.active)
PSL_plotbitimage (PSL, x, y, Ctrl->D.dim[GMT_X], Ctrl->D.dim[GMT_Y], PSL_BL, picture,
header.width, header.height, Ctrl->G.rgb[PSIMAGE_FGD], Ctrl->G.rgb[PSIMAGE_BGD]);
else
PSL_plotbitimage (PSL, x, y, Ctrl->D.dim[GMT_X], Ctrl->D.dim[GMT_Y], PSL_BL, picture,
header.width, header.height, Ctrl->G.rgb[PSIMAGE_BGD], Ctrl->G.rgb[PSIMAGE_FGD]);
}
else
PSL_plotcolorimage (PSL, x, y, Ctrl->D.dim[GMT_X], Ctrl->D.dim[GMT_Y], PSL_BL, picture,
PS_transparent * header.width, header.height, PS_interpolate * header.depth);
}
}
if (Ctrl->F.active) /* Draw frame outlines */
gmt_draw_map_panel (GMT, Ctrl->D.refpoint->x + 0.5 * Ctrl->F.panel->width, Ctrl->D.refpoint->y + 0.5 * Ctrl->F.panel->height, 2U, Ctrl->F.panel);
/* Redo original -R -J so basemap can work */
GMT->common.J.active = false;
gmt_parse_common_options (GMT, "J", 'J', Jarg);
if (gmt_map_setup (GMT, Rwesn)) {
if (free_GMT)
gmt_M_free (GMT, picture);
else if (is_eps || did_gray)
PSL_free (picture);
gmt_M_str_free (file);
Return (GMT_PROJECTION_ERROR);
}
gmt_map_basemap (GMT); /* Draw basemap if requested */
gmt_plane_perspective (GMT, -1, 0.0);
gmt_plotend (GMT);
gmt_M_str_free (file);
if (I && GMT_Destroy_Data (API, &I) != GMT_NOERROR) {
Return (API->error); /* If I is NULL then nothing is done */
}
if (free_GMT) {
gmt_M_free (GMT, picture);
}
else if (is_eps || did_gray)
PSL_free (picture);
Return (GMT_NOERROR);
}
EXTERN_MSC int GMT_image (void *V_API, int mode, void *args) {
/* This is the GMT6 modern mode name */
struct GMTAPI_CTRL *API = gmt_get_api_ptr (V_API); /* Cast from void to GMTAPI_CTRL pointer */
if (API->GMT->current.setting.run_mode == GMT_CLASSIC && !API->usage) {
GMT_Report (API, GMT_MSG_ERROR, "Shared GMT module not found: image\n");
return (GMT_NOT_A_VALID_MODULE);
}
return GMT_psimage (V_API, mode, args);
}