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
|
- |No-spaces|
- Description
- -----------
- **image** reads an Encapsulated PostScript file or a raster image
- file and plots it on a map. The image can be scaled arbitrarily, and
- 1-bit raster images can be (1) inverted, i.e., black
- pixels (on) becomes white (off) and vice versa, or
- (2) colorized, by assigning different foreground and
- background colors, and (3) made transparent where one of
- back- or foreground is painted only. As an option, the user may choose
- to convert colored raster images to grayscale using TV's
- YIQ-transformation. For raster files, the user can select which color to
- be made transparent. The user may also choose to replicate the image
- which, when preceded by appropriate clip paths, may allow larger
- custom-designed fill patterns to be implemented (the **-Gp** mechanism
- offered in most GMT programs is limited to rasters smaller than 146
- by 146).
- Required Arguments
- ------------------
- *imagefile*
- This must be an Encapsulated PostScript (EPS) file or a raster
- image. An EPS file must contain an appropriate BoundingBox. A raster
- file can have a depth of 1, 8, 24, or 32 bits and is read via GDAL.
- **Note**: If GDAL was not configured during GMT installation then only
- EPS files are supported.
- Optional Arguments
- ------------------
- .. _-D:
- **-D**\ [**g**\|\ **j**\|\ **J**\|\ **n**\|\ **x**]\ *refpoint*\ **+r**\ *dpi*\ **+w**\ [**-**]\ *width*\ [/*height*]\ [**+j**\ *justify*]\ [**+n**\ *nx*\ [/*ny*] ]\ [**+o**\ *dx*\ [/*dy*]]
- Sets reference point on the map for the image using one of four coordinate systems:
- .. include:: explain_refpoint.rst_
- By default, the anchor point on the scale is assumed to be the bottom left corner (BL), but this
- can be changed by appending **+j** followed by a 2-char justification code *justify* (see :doc:`text`).
- **Note**: If **-Dj** is used then *justify* defaults to the same as *refpoint*,
- if **-DJ** is used then *justify* defaults to the mirror opposite of *refpoint*.
- Specify image size in one of two ways:
- Use **+r**\ *dpi* to set the dpi of the image in dots per inch, or use
- **+w**\ [**-**]\ *width*\ [/*height*] to
- set the width (and height) of the image in plot coordinates
- (inches, cm, etc.). If *height* is not given, the original aspect
- ratio of the image is maintained. If *width* is negative we use the
- absolute value and interpolate image to the device resolution using
- the PostScript image operator. Optionally, use **+n**\ *nx*\ [/*ny*] to
- replicate the image *nx* times horizontally and *ny* times
- vertically. If *ny* is omitted, it will be identical to *nx* [Default is 1/1].
- .. _-F:
- **-F**\ [**+c**\ *clearances*][**+g**\ *fill*][**+i**\ [[*gap*/]\ *pen*]][**+p**\ [*pen*]][**+r**\ [*radius*]][**+s**\ [[*dx*/*dy*/][*shade*]]]
- Without further options, draws a rectangular border around the image using
- :term:`MAP_FRAME_PEN`; specify a different pen with **+p**\ *pen*.
- Add **+g**\ *fill* to fill the image box [no fill].
- Append **+c**\ *clearance* where *clearance* is either *gap*, *xgap*\ /\ *ygap*,
- or *lgap*\ /\ *rgap*\ /\ *bgap*\ /\ *tgap* where these items are uniform, separate in
- x- and y-direction, or individual side spacings between scale and border.
- Append **+i** to draw a secondary, inner border as well. We use a uniform
- *gap* between borders of 2\ **p** and the :term:`MAP_DEFAULT_PEN`
- unless other values are specified. Append **+r** to draw rounded
- rectangular borders instead, with a 6\ **p** corner radius. You can
- override this radius by appending another value. Finally, append
- **+s** to draw an offset background shaded region. Here, *dx*/*dy*
- indicates the shift relative to the foreground frame
- [4\ **p**/-4\ **p**] and *shade* sets the fill style to use for shading [gray50].
- .. _-G:
- **-G**\ [*color*][**+b**\|\ **f**\|\ **t**]
- Change certain pixel values to another color or make them transparent.
- For 1-bit images you can specify an alternate *color* for the background (**+b**)
- or the foreground (**+f**) pixels, or give no color to make those pixels
- transparent. Alternatively, for color images you can select a single *color*
- that should be made transparent instead (**+t**).
- .. _-I:
- **-I**
- Invert 1-bit image before plotting. This is what is done when you
- use **-GP** to invert patterns in other GMT plotting programs. Ignored
- if used with color images.
- .. _-J:
- .. |Add_-J| replace:: (Used only with **-p**)
- .. include:: explain_-J.rst_
- .. _-M:
- **-M**
- Convert color image to monochrome grayshades using the (television)
- YIQ-transformation.
- .. _-R:
- .. |Add_-R| replace:: (Used only with **-p**)
- .. include:: explain_-R.rst_
- .. |Add_-Rz| unicode:: 0x20 .. just an invisible code
- .. include:: explain_-Rz.rst_
- .. _-U:
- .. include:: explain_-U.rst_
- .. _-V:
- .. |Add_-V| unicode:: 0x20 .. just an invisible code
- .. include:: explain_-V.rst_
- .. _-X:
- .. include:: explain_-XY.rst_
- .. |Add_perspective| replace:: (Requires **-R** and **-J** for proper functioning).
- .. include:: explain_perspective.rst_
- .. include:: explain_-t.rst_
- .. include:: explain_help.rst_
- Notes
- -----
- The **-G** and **-I** options are for raster images only. They have
- no effect when placing Encapsulated *PostScript* files.
|