rmagick 1.13.0 → 1.14.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of rmagick might be problematic. Click here for more details.

Files changed (48) hide show
  1. data/ChangeLog +34 -0
  2. data/README.html +12 -29
  3. data/README.txt +10 -26
  4. data/configure +768 -73
  5. data/configure.ac +29 -26
  6. data/doc/comtasks.html +3 -4
  7. data/doc/constants.html +85 -67
  8. data/doc/draw.html +22 -0
  9. data/doc/ex/dissolve.rb +13 -0
  10. data/doc/ex/edge.rb +1 -1
  11. data/doc/ex/mask.rb +37 -0
  12. data/doc/ex/sketch.rb +25 -0
  13. data/doc/ex/watermark.rb +23 -0
  14. data/doc/ilist.html +11 -13
  15. data/doc/image1.html +601 -52
  16. data/doc/image2.html +637 -28
  17. data/doc/image3.html +339 -54
  18. data/doc/imageattrs.html +211 -41
  19. data/doc/imusage.html +41 -2
  20. data/doc/index.html +8 -6
  21. data/doc/info.html +57 -42
  22. data/doc/optequiv.html +1919 -0
  23. data/doc/rvg.html +45 -42
  24. data/doc/scripts/doc.js +14 -1
  25. data/doc/scripts/stripeTables.js +23 -0
  26. data/doc/usage.html +66 -15
  27. data/{doc/ex → examples}/demo.rb +0 -0
  28. data/examples/find_similar_region.rb +34 -0
  29. data/examples/import_export.rb +1 -1
  30. data/examples/pattern_fill.rb +2 -2
  31. data/examples/rotating_text.rb +2 -4
  32. data/examples/thumbnail.rb +1 -1
  33. data/ext/RMagick/MANIFEST +9 -4
  34. data/ext/RMagick/extconf.rb.in +1 -1
  35. data/ext/RMagick/rmagick.h +47 -10
  36. data/ext/RMagick/rmagick_config.h.in +24 -0
  37. data/ext/RMagick/rmdraw.c +32 -7
  38. data/ext/RMagick/rmilist.c +55 -37
  39. data/ext/RMagick/rmimage.c +1588 -447
  40. data/ext/RMagick/rminfo.c +94 -3
  41. data/ext/RMagick/rmmain.c +68 -7
  42. data/ext/RMagick/rmutil.c +67 -9
  43. data/lib/RMagick.rb +190 -53
  44. data/lib/rvg/stretchable.rb +17 -13
  45. data/rmagick.gemspec +1 -1
  46. metadata +11 -6
  47. data/doc/ex/level_channel.rb +0 -33
  48. data/doc/ex/opaque.rb +0 -14
@@ -64,6 +64,8 @@
64
64
 
65
65
  <li><a href="#aref">[]</a></li>
66
66
 
67
+ <li><a href="#channel">channel</a></li>
68
+
67
69
  <li><a href="#define">define</a></li>
68
70
 
69
71
  <li><a href="#undefine">undefine</a></li>
@@ -94,13 +96,13 @@
94
96
  <li><a href="#depth">depth</a></li>
95
97
 
96
98
  <li><a href="#dispose">dispose</a></li>
97
-
98
- <li><a href="#dither">dither</a></li>
99
99
  </ul>
100
100
  </div>
101
101
 
102
102
  <div class="toccol">
103
103
  <ul>
104
+ <li><a href="#dither">dither</a></li>
105
+
104
106
  <li><a href="#extract">extract</a></li>
105
107
 
106
108
  <li><a href="#filename">filename</a></li>
@@ -122,16 +124,14 @@
122
124
  <li><a href="#label">label</a></li>
123
125
 
124
126
  <li><a href="#matte_color">matte_color</a></li>
125
-
126
- <li><a href="#monitor">monitor</a></li>
127
127
  </ul>
128
128
  </div>
129
129
 
130
130
  <div class="toccol">
131
131
  <ul>
132
- <li><a href="#monochrome">monochrome</a></li>
132
+ <li><a href="#monitor">monitor</a></li>
133
133
 
134
- <li><a href="#number_scenes">number_scenes</a></li>
134
+ <li><a href="#monochrome">monochrome</a></li>
135
135
 
136
136
  <li><a href="#orientation">orientation</a></li>
137
137
 
@@ -143,12 +143,12 @@
143
143
 
144
144
  <li><a href="#sampling_factor">sampling_factor</a></li>
145
145
 
146
- <li><a href="#scene">scene</a></li>
147
-
148
146
  <li><a href="#server_name">server_name</a></li>
149
147
 
150
148
  <li><a href="#size">size</a></li>
151
149
 
150
+ <li><a href="#texture">texture</a></li>
151
+
152
152
  <li><a href="#units">units</a></li>
153
153
 
154
154
  <li><a href="#view">view</a></li>
@@ -286,6 +286,33 @@ self["tiff", "bits-per-sample"] &raquo; 2
286
286
  (GraphicsMagick 1.1)</p>
287
287
  </div>
288
288
 
289
+ <div class="sig">
290
+ <h3 id="channel">channel</h3>
291
+
292
+ <p><span class="arg">self</span>.channel([<span class=
293
+ "arg">channel</span> [, <span class=
294
+ "arg">channel</span>...]])</p>
295
+ </div>
296
+
297
+ <div class="desc">
298
+ <h4>Description</h4>
299
+
300
+ <p>Restrict the method to the specified channel(s). This
301
+ attribute is set-only.</p>
302
+
303
+ <h4>Argument</h4>
304
+
305
+ <p>The arguments may be any <a href=
306
+ "constants.html#ChannelType">ChannelType</a> values.</p>
307
+
308
+ <h4>Notes</h4>
309
+
310
+ <p>If you call <code>channel</code> with no arguments,
311
+ <em>all</em> channels are included. If you do not call
312
+ <code>channel</code> at all, the channels used do not include
313
+ the alpha channel.</p>
314
+ </div>
315
+
289
316
  <div class="sig">
290
317
  <h3 id="define">define</h3>
291
318
 
@@ -1033,21 +1060,6 @@ self.undefine("tiff", "bits-per-sample")
1033
1060
  EPT, PDF, and PS formats respect this attribute.</p>
1034
1061
  </div>
1035
1062
 
1036
- <div class="sig">
1037
- <h3 id="number_scenes">number_scenes</h3>
1038
-
1039
- <p><span class="arg">self.</span>number_scenes= <span class=
1040
- "arg">anInteger</span></p>
1041
- </div>
1042
-
1043
- <div class="desc">
1044
- <h4>Description</h4>
1045
-
1046
- <p>Used in conjunction with <a href="#scene">scene</a> to
1047
- specify the range of frames to be extracted when constituting a
1048
- multi-frame image.</p>
1049
- </div>
1050
-
1051
1063
  <div class="sig">
1052
1064
  <h3 id="orientation">orientation</h3>
1053
1065
 
@@ -1109,10 +1121,9 @@ self.undefine("tiff", "bits-per-sample")
1109
1121
  <div class="desc">
1110
1122
  <h4>Description</h4>
1111
1123
 
1112
- <p>Set the compression level to use with the
1113
- <code>JPEGCompression</code> and <code>ZipCompression</code>
1114
- types. The value may range from 0 to 100, with 100 representing
1115
- the least compression. The default is 75. See <em><a href=
1124
+ <p>The compression level for JPEG, MPEG, JPEG-2000, MIFF, MNG,
1125
+ and PNG image format. Corresponds to &times;Magick's -quality
1126
+ option. The default is 75. See <em><a href=
1116
1127
  "comtasks.html#compressing">Compressing image
1117
1128
  files</a></em>.</p>
1118
1129
  </div>
@@ -1143,21 +1154,6 @@ self.undefine("tiff", "bits-per-sample")
1143
1154
  "<em>horizontal-factor</em><strong>x</strong><em>vertical-factor</em>"</p>
1144
1155
  </div>
1145
1156
 
1146
- <div class="sig">
1147
- <h3 id="scene">scene</h3>
1148
-
1149
- <p><em>self.</em>scene= <em>anInteger</em></p>
1150
- </div>
1151
-
1152
- <div class="desc">
1153
- <h4>Description</h4>
1154
-
1155
- <p>Used in conjunction with <a href=
1156
- "#number_scenes">number_scenes</a> to specify the range of
1157
- frames to be extracted when constituting a multi-frame
1158
- image.</p>
1159
- </div>
1160
-
1161
1157
  <div class="sig">
1162
1158
  <h3 id="server_name">server_name</h3>
1163
1159
 
@@ -1200,6 +1196,25 @@ self.undefine("tiff", "bits-per-sample")
1200
1196
  or a <a href="struct.html#Geometry">Geometry</a> object.</p>
1201
1197
  </div>
1202
1198
 
1199
+ <div class="sig">
1200
+ <h3 id="texture">texture</h3>
1201
+
1202
+ <p><span class="arg">self</span>.texture= <span class=
1203
+ "arg">image</span></p>
1204
+ </div>
1205
+
1206
+ <div class="desc">
1207
+ <h4>Description</h4>
1208
+
1209
+ <p>Set a texture to tile onto the image background. Corresponds
1210
+ to the -texture option to &times;Magick's convert and mogrify
1211
+ commands. This attribute is set-only.</p>
1212
+
1213
+ <h4>Argument</h4>
1214
+
1215
+ <p>An image</p>
1216
+ </div>
1217
+
1203
1218
  <div class="sig">
1204
1219
  <h3 id="units">units</h3>
1205
1220
 
@@ -0,0 +1,1919 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
+
4
+ <html xmlns="http://www.w3.org/1999/xhtml">
5
+ <head>
6
+ <meta name="generator" content=
7
+ "HTML Tidy for Linux/x86 (vers 1st December 2004), see www.w3.org" />
8
+
9
+ <title>RMagick: Magick Command Options and Their Equivalent
10
+ Methods</title>
11
+ <meta http-equiv="Content-Type" content=
12
+ "text/html; charset=us-ascii" />
13
+ <meta name="GENERATOR" content="Quanta Plus" />
14
+ <meta name="Copyright" content=
15
+ "Copyright (C) 2006 by Timothy P. Hunter" />
16
+ <link rel="stylesheet" type="text/css" href="css/doc.css" />
17
+ <script type="text/javascript" src="scripts/doc.js">
18
+ </script>
19
+ <script type="text/javascript" src="scripts/stripeTables.js">
20
+ </script>
21
+ <script type="text/javascript">
22
+ //<![CDATA[
23
+ addLoadEvent(stripeTables);
24
+ //]]>
25
+ </script>
26
+ <style type="text/css">
27
+ /*<![CDATA[*/
28
+
29
+ /* Styles local to this page. */
30
+ table {
31
+ margin-top: 2em;
32
+ margin-left: 5%;
33
+ width: 95%;
34
+ border: 1px solid #545454;
35
+ }
36
+
37
+ th {
38
+ padding: 2px;
39
+ vertical-align: top;
40
+ background-color: #c0c0c0;
41
+ width:50%;
42
+ }
43
+
44
+ td {
45
+ padding: 2px;
46
+ vertical-align :top;
47
+ }
48
+
49
+ .intro p {
50
+ margin-left: 5%;
51
+ margin-right: 5%;
52
+ padding: 5px;
53
+ }
54
+
55
+ .intro h3 {
56
+ margin: 0 0;
57
+ margin-top: 1em;
58
+ padding-left: 5px;
59
+ background-color: white;
60
+ background-image: url(ex/images/graydient230x6.gif);
61
+ background-repeat: repeat-y;
62
+ color: black;
63
+ font-weight: normal;
64
+ font-size: small;
65
+ padding-bottom: 0;
66
+ }
67
+
68
+ /*]]>*/
69
+ </style>
70
+ </head>
71
+
72
+ <body>
73
+ <h6 id="header">RMagick User's Guide and Reference</h6>
74
+
75
+ <div class="nav">
76
+ &laquo; <a href="index.html">Prev</a> | <a href=
77
+ "imusage.html">Contents</a> | <a href="comtasks.html">Next</a>
78
+ &raquo;
79
+ </div>
80
+
81
+ <h1>RMagick: Magick Command Options and Their Equivalent
82
+ Methods</h1>
83
+
84
+ <div id="toc">
85
+ <h2>Table of Contents</h2>
86
+
87
+ <h3>Commands</h3>
88
+
89
+ <div class="toccol">
90
+ <ul>
91
+ <li><a href="#convert">convert, mogrify</a></li>
92
+
93
+ <li><a href="#composite">composite</a></li>
94
+
95
+ <li><a href="#montage">montage</a></li>
96
+ </ul>
97
+ </div>
98
+ </div>
99
+
100
+ <h2 class="methods" id="convert">convert, mogrify</h2>
101
+
102
+ <div class="intro">
103
+ <h3>Introduction</h3>
104
+
105
+ <p>If you're familar with the &times;Magick command-line tools
106
+ <code>convert</code>, <code>mogrify</code>,
107
+ <code>composite</code>, and <code>montage</code> you can use
108
+ the tables on this page to determine which RMagick methods
109
+ correspond to the options used by these tools.</p>
110
+
111
+ <p>The options listed below are for ImageMagick 6.2.9. Earlier
112
+ releases of ImageMagick and the GraphicsMagick <code>gm</code>
113
+ command may not support all these options. Later releases of
114
+ ImageMagick may have options that are not listed.</p>
115
+
116
+ <p>&times;Magick's <code>convert</code> and
117
+ <code>mogrify</code> share many options with each other, as
118
+ well as with the other utilities. This table includes all the
119
+ options for both <code>convert</code> and <code>mogrify</code>.
120
+ When another utility has an option with the same name and
121
+ purpose, and same RMagick equivalent, the option is omitted
122
+ from the table for that utility.</p>
123
+ </div>
124
+
125
+ <table class="striped" summary=
126
+ "convert, mogrify options and equivalent methods">
127
+ <thead>
128
+ <tr>
129
+ <th>Magick Option</th>
130
+
131
+ <th>RMagick Method</th>
132
+ </tr>
133
+ </thead>
134
+
135
+ <tbody>
136
+ <tr>
137
+ <td>-adaptive-blur <em>radius</em>x<em>sigma</em></td>
138
+
139
+ <td>Image#<a href=
140
+ "image1.html#adaptive_blur">adaptive_blur</a>(<em>radius</em>=0.0,
141
+ <em>sigma</em>=1.0)</td>
142
+ </tr>
143
+
144
+ <tr>
145
+ <td>-adaptive-resize <em>width</em>x<em>height</em></td>
146
+
147
+ <td>Image#<a href=
148
+ "image1.html#adaptive_resize">adaptive_resize</a>(<em>width</em>,
149
+ <em>height</em>)</td>
150
+ </tr>
151
+
152
+ <tr>
153
+ <td>-adaptive-sharpen <em>radius</em>x<em>sigma</em></td>
154
+
155
+ <td>Image#<a href=
156
+ "image1.html#adaptive_sharpen">adaptive_sharpen</a>(<em>radius</em>=0.0,
157
+ <em>sigma</em>=1.0)</td>
158
+ </tr>
159
+
160
+ <tr>
161
+ <td>-adjoin</td>
162
+
163
+ <td>No equivalent. All images in an imagelist are written
164
+ to the same file if the file format supports multi-image
165
+ files.</td>
166
+ </tr>
167
+
168
+ <tr>
169
+ <td>-affine <em>sx</em>, <em>rx</em>, <em>ry</em>,
170
+ <em>sy</em>, <em>tx</em>, <em>ty</em></td>
171
+
172
+ <td>Draw#<a href="draw.html#affine">affine</a>(<em>sx</em>,
173
+ <em>rx</em>, <em>ry</em>, <em>sy</em>, <em>tx</em>,
174
+ <em>ty</em>) (for drawing)<br />
175
+ Draw#<a href=
176
+ "draw.html#affine_eq">affine=</a><em>matrix</em> (for
177
+ annotation)</td>
178
+ </tr>
179
+
180
+ <tr>
181
+ <td>-annotate
182
+ <em>x-rotate</em>x<em>y-rotate</em>+<em>x</em>+<em>y</em>
183
+ <em>text</em></td>
184
+
185
+ <td>Draw#<a href=
186
+ "draw.html#annotate">annotate</a>(<em>image</em>,
187
+ <em>x-rotate</em>, <em>y-rotate</em>, <em>x</em>,
188
+ <em>y</em>, <em>text</em>)</td>
189
+ </tr>
190
+
191
+ <tr>
192
+ <td>-antialias</td>
193
+
194
+ <td>Draw#<a href=
195
+ "draw.html#stroke_antialias">stroke_antialias</a>(<code>true</code>)<br />
196
+
197
+ Draw#<a href=
198
+ "draw.html#text_antialias">text_antialias</a>(<code>true</code>)
199
+ (for drawing)<br />
200
+ Draw#<a href=
201
+ "Draw#text_antialias_eq">text_antialias=</a><code>true</code>
202
+ (for annotation)</td>
203
+ </tr>
204
+
205
+ <tr>
206
+ <td>-append<br />
207
+ +append</td>
208
+
209
+ <td>ImageList#<a href=
210
+ "ilist.html#append">append</a>(<code>true</code>)<br />
211
+ ImageList#<a href=
212
+ "ilist.html#append">append</a>(<code>false</code>)</td>
213
+ </tr>
214
+
215
+ <tr>
216
+ <td>-authenticate <em>string</em></td>
217
+
218
+ <td>Image::Info#<a href=
219
+ "info.html#authenticate">authenticate</a>=<em>string</em></td>
220
+ </tr>
221
+
222
+ <tr>
223
+ <td>-auto-orient</td>
224
+
225
+ <td>Image#<a href=
226
+ "image1.html#auto-orient">auto-orient</a></td>
227
+ </tr>
228
+
229
+ <tr>
230
+ <td>-average</td>
231
+
232
+ <td>ImageList#<a href="ilist.html#average">average</a></td>
233
+ </tr>
234
+
235
+ <tr>
236
+ <td>-background <em>color</em></td>
237
+
238
+ <td>Image::Info#<a href=
239
+ "info.html#background_color">background_color=</a><em>color</em></td>
240
+ </tr>
241
+
242
+ <tr>
243
+ <td>-bias <em>value[%]</em></td>
244
+
245
+ <td>Image#<a href=
246
+ "imageattrs.html#bias">bias</a>(<em>value</em>)<br />
247
+ Image#<a href=
248
+ "imageattrs.html#bias">bias</a>('<em>value%</em>')</td>
249
+ </tr>
250
+
251
+ <tr>
252
+ <td>-black-point-compensation</td>
253
+
254
+ <td>Image#<a href=
255
+ "imageattrs.html#black_point_compensation">black_point_compensation</a>=
256
+ <code>true</code></td>
257
+ </tr>
258
+
259
+ <tr>
260
+ <td>-black-threshold <em>threshold</em></td>
261
+
262
+ <td>Image#<a href=
263
+ "image1.html#black_threshold">black_threshold</a>(<em>red_channel</em>
264
+ [, <em>green_channel</em> [, <em>blue_channel</em> [,
265
+ <em>opacity_channel</em>]]])</td>
266
+ </tr>
267
+
268
+ <tr>
269
+ <td>-blue-primary <em>x</em>,<em>y</em></td>
270
+
271
+ <td>Image#<a href=
272
+ "imageattrs.html#chromaticity">chromaticity=</a><em><a href="struct.html#Chromaticity">
273
+ chromaticity</a></em></td>
274
+ </tr>
275
+
276
+ <tr>
277
+ <td>-blur <em>radius</em>x<em>sigma</em></td>
278
+
279
+ <td>Image#<a href=
280
+ "image1.html#blur_image">blur_image</a>(<em>radius</em>=0.0,
281
+ <em>sigma</em>=1.0)</td>
282
+ </tr>
283
+
284
+ <tr>
285
+ <td>-border <em>width</em>x<em>height</em></td>
286
+
287
+ <td>Image#<a href=
288
+ "image1.html#border">border</a>(<em>width</em>,
289
+ <em>height</em>, <em>color</em>)</td>
290
+ </tr>
291
+
292
+ <tr>
293
+ <td>-bordercolor <em>color</em></td>
294
+
295
+ <td>Image#<a href=
296
+ "imageattrs.html#border_color">border_color=</a><em>color</em></td>
297
+ </tr>
298
+
299
+ <tr>
300
+ <td>-channel <em>type</em></td>
301
+
302
+ <td>Image::Info#<a href=
303
+ "info.html#channel">channel</a>(<em>type</em> [,
304
+ <em>type</em>...])<br />
305
+ Channel value arguments are accepted by many methods.</td>
306
+ </tr>
307
+
308
+ <tr>
309
+ <td>-charcoal <em>factor</em></td>
310
+
311
+ <td>Image#<a href=
312
+ "image1.html#charcoal">charcoal</a>(<em>radius</em>=0.0,
313
+ <em>sigma</em>=1.0)</td>
314
+ </tr>
315
+
316
+ <tr>
317
+ <td>-chop
318
+ <em>width</em>x<em>height</em>+<em>x</em>+<em>y</em></td>
319
+
320
+ <td>Image#<a href="image1.html#chop">chop</a>(<em>x</em>,
321
+ <em>y</em>, <em>width</em>, <em>height</em>)</td>
322
+ </tr>
323
+
324
+ <tr>
325
+ <td>-clip</td>
326
+
327
+ <td>No equivalent</td>
328
+ </tr>
329
+
330
+ <tr>
331
+ <td>-clip-path</td>
332
+
333
+ <td>No equivalent</td>
334
+ </tr>
335
+
336
+ <tr>
337
+ <td>-clone</td>
338
+
339
+ <td>Image#<a href="image1.html#clone">clone</a><br />
340
+ Image#<a href="image1.html#copy">copy</a><br />
341
+ Image#<a href="image1.html#dup">dup</a></td>
342
+ </tr>
343
+
344
+ <tr>
345
+ <td>-coalesce</td>
346
+
347
+ <td>ImageList#<a href=
348
+ "ilist.html#coalesce">coalesce</a></td>
349
+ </tr>
350
+
351
+ <tr>
352
+ <td>-colorize <em>value</em></td>
353
+
354
+ <td>Image#<a href=
355
+ "image1.html#colorize">colorize</a>(<em>red</em>,
356
+ <em>green</em>, <em>blue</em>, [<em>matte</em>, ]
357
+ <em>fill</em>)</td>
358
+ </tr>
359
+
360
+ <tr>
361
+ <td>-colors</td>
362
+
363
+ <td>This option corresponds to the first argument to
364
+ Image#<a href="image3.html#quantize">quantize</a> and
365
+ ImageList#<a href="ilist.html#quantize">quantize</a>.</td>
366
+ </tr>
367
+
368
+ <tr>
369
+ <td>-colorspace <em>colorspace</em></td>
370
+
371
+ <td>Image#<a href=
372
+ "imageattrs.html#colorspace">colorspace=</a><em><a href=
373
+ "constants.html#ColorspaceType">colorspace</a></em><br />
374
+ Also corresponds to the <em>colorspace</em> argument to
375
+ Image#<a href="image3.html#quantize">quantize</a> and
376
+ ImageList#<a href="ilist.html#quantize">quantize</a></td>
377
+ </tr>
378
+
379
+ <tr>
380
+ <td>-combine</td>
381
+
382
+ <td>No equivalent</td>
383
+ </tr>
384
+
385
+ <tr>
386
+ <td>-comment <em>string</em></td>
387
+
388
+ <td>Image#<a href=
389
+ "image1.html#aset">['Comment']=</a><em>string</em></td>
390
+ </tr>
391
+
392
+ <tr>
393
+ <td>-compose <em>operator</em></td>
394
+
395
+ <td>This option corresponds to the <em><a href=
396
+ "constants.html#CompositeOperator">composite_op</a></em>
397
+ argument to Image#<a href=
398
+ "image1.html#composite">composite</a>.</td>
399
+ </tr>
400
+
401
+ <tr>
402
+ <td>-composite</td>
403
+
404
+ <td>Image#<a href=
405
+ "image1.html#composite">composite</a>(<em>source_image</em>,
406
+ <em>x</em>, <em>y</em>, <em><a href=
407
+ "constants.html#CompositeOperator">composite_op</a></em>)</td>
408
+ </tr>
409
+
410
+ <tr>
411
+ <td>-compress <em>type</em></td>
412
+
413
+ <td>Image#<a href=
414
+ "imageattrs.html#compression">compression=</a><em><a href=
415
+ "constants.html#CompressionType">type</a></em></td>
416
+ </tr>
417
+
418
+ <tr>
419
+ <td>-contrast<br />
420
+ +contrast</td>
421
+
422
+ <td>Image#<a href=
423
+ "image1.html#contrast">contrast</a>(<code>true</code>)<br />
424
+
425
+ Image#<a href=
426
+ "image1.html#contrast">contrast</a>(<code>false</code>)</td>
427
+ </tr>
428
+
429
+ <tr>
430
+ <td>-contrast-stretch
431
+ <em>black-point</em>x<em>white-point</em></td>
432
+
433
+ <td>Image#<a href=
434
+ "image1.html#contrast_stretch_channel">contrast_stretch_channel</a>(
435
+ <em>black_point</em>, <em>white_point</em> [, <em><a href=
436
+ "constants.html#ChannelType">channel</a></em>...])</td>
437
+ </tr>
438
+
439
+ <tr>
440
+ <td>-convolve <em>kernel</em></td>
441
+
442
+ <td>Image#<a href=
443
+ "image1.html#convolve">convolve</a>(<em>order</em>,
444
+ <em>kernel</em>)</td>
445
+ </tr>
446
+
447
+ <tr>
448
+ <td>-crop
449
+ <em>width</em>x<em>height</em>+<em>x</em>+<em>y</em></td>
450
+
451
+ <td>Image#<a href="image1.html#crop">crop</a>(<em>x</em>,
452
+ <em>y</em>, <em>width</em>, <em>height</em>)</td>
453
+ </tr>
454
+
455
+ <tr>
456
+ <td>-cycle <em>amount</em></td>
457
+
458
+ <td>Image#<a href=
459
+ "image1.html#cycle_colormap">cycle_colormap</a>(<em>amount</em>)</td>
460
+ </tr>
461
+
462
+ <tr>
463
+ <td>-debug</td>
464
+
465
+ <td>No equivalent</td>
466
+ </tr>
467
+
468
+ <tr>
469
+ <td>-deconstruct</td>
470
+
471
+ <td>ImageList#<a href=
472
+ "ilist.html#deconstruct">deconstruct</a></td>
473
+ </tr>
474
+
475
+ <tr>
476
+ <td>-define <em>key</em>=<em>value</em><br />
477
+ +define <em>key</em></td>
478
+
479
+ <td>Image::Info#<a href=
480
+ "info.html#define">define</a>(<em>format</em>,
481
+ <em>key</em>, <em>value</em>)<br />
482
+ Image::Info#<a href=
483
+ "info.html#undefine">undefine</a>(<em>format</em>,
484
+ <em>key</em>)</td>
485
+ </tr>
486
+
487
+ <tr>
488
+ <td>-delay <em>ticks</em>x<em>ticks-per-second</em></td>
489
+
490
+ <td>Image#<a href=
491
+ "imageattrs.html#ticks">ticks=</a><em>ticks</em><br />
492
+ Image#<a href=
493
+ "imageattrs.html#ticks_per_second">ticks_per_second=</a>
494
+ <em>ticks-per-second</em></td>
495
+ </tr>
496
+
497
+ <tr>
498
+ <td>-delete <em>index</em></td>
499
+
500
+ <td>ImageList#<a href=
501
+ "ilist.html#array_methods">delete_at</a>(<em>index</em>)</td>
502
+ </tr>
503
+
504
+ <tr>
505
+ <td>-density <em>width</em>x<em>height</em></td>
506
+
507
+ <td>Image#<a href=
508
+ "imageattrs.html#density">density=</a>"<em>width</em>x<em>height</em>"<br />
509
+
510
+ Image::Info#<a href=
511
+ "info.html#density">density=</a>"<em>width</em>x<em>height</em>"<br />
512
+
513
+ Image#<a href=
514
+ "imageattrs.html#x_resolution">x_resolution=</a><em>width</em><br />
515
+
516
+ Image#<a href=
517
+ "imageattrs.html#y_resolution">y_resolution=</a><em>height</em></td>
518
+ </tr>
519
+
520
+ <tr>
521
+ <td>-depth <em>depth</em></td>
522
+
523
+ <td>Image::Info#<a href=
524
+ "info.html#depth">depth=</a><em>depth</em></td>
525
+ </tr>
526
+
527
+ <tr>
528
+ <td>-despeckle</td>
529
+
530
+ <td>Image#<a href=
531
+ "image1.html#despeckle">despeckle</a></td>
532
+ </tr>
533
+
534
+ <tr>
535
+ <td>-display</td>
536
+
537
+ <td>No equivalent</td>
538
+ </tr>
539
+
540
+ <tr>
541
+ <td>-dispose <em>method</em></td>
542
+
543
+ <td>Image#<a href=
544
+ "imageattrs.html#dispose">dispose=</a><em><a href=
545
+ "constants.html#DisposeType">method</a></em></td>
546
+ </tr>
547
+
548
+ <tr>
549
+ <td>-dither<br />
550
+ +dither</td>
551
+
552
+ <td>This option corresponds to the <em>dither</em> option
553
+ to Image#<a href="image1.html#quantize">quantize</a> and
554
+ ImageList#<a href="ilist.html#quantize">quantize</a>.</td>
555
+ </tr>
556
+
557
+ <tr>
558
+ <td>-draw <em>string</em></td>
559
+
560
+ <td>Draw#<a href="draw.html#draw">draw</a></td>
561
+ </tr>
562
+
563
+ <tr>
564
+ <td>-edge <em>radius</em></td>
565
+
566
+ <td>Image#<a href=
567
+ "image1.html#edge">edge</a>(<em>radius</em>=0.0)</td>
568
+ </tr>
569
+
570
+ <tr>
571
+ <td>-emboss <em>radius</em></td>
572
+
573
+ <td>Image#<a href=
574
+ "image1.html#emboss">emboss</a>(<em>radius</em>=0.0,
575
+ <em>sigma</em>=1.0)</td>
576
+ </tr>
577
+
578
+ <tr>
579
+ <td>-encoding <em>type</em></td>
580
+
581
+ <td>Draw#<a href=
582
+ "draw.html#encoding">encoding</a>(<em>type</em>) (for
583
+ drawing)<br />
584
+ Draw#<a href=
585
+ "draw.html#encoding_eq">encoding=</a><em>type</em> (for
586
+ annotation)</td>
587
+ </tr>
588
+
589
+ <tr>
590
+ <td>-endian type</td>
591
+
592
+ <td>Image#<a href=
593
+ "imageattrs.html#endian">endian=</a><em><a href=
594
+ "constants.html#EndianType">type</a></em></td>
595
+ </tr>
596
+
597
+ <tr>
598
+ <td>-enhance</td>
599
+
600
+ <td>Image#<a href="image2.html#enhance">enhance</a></td>
601
+ </tr>
602
+
603
+ <tr>
604
+ <td>-equalize</td>
605
+
606
+ <td>Image#<a href="image2.html#equalize">equalize</a></td>
607
+ </tr>
608
+
609
+ <tr>
610
+ <td>-evaluate <em>operator</em> <em>value</em></td>
611
+
612
+ <td>Image#<a href=
613
+ "image3.html#quantum_operator">quantum_operator</a>(<em>operator</em>,
614
+ <em>value</em> [, <em><a href=
615
+ "constants.html#ChannelType">channel</a></em>])</td>
616
+ </tr>
617
+
618
+ <tr>
619
+ <td>-extent</td>
620
+
621
+ <td>No equivalent</td>
622
+ </tr>
623
+
624
+ <tr>
625
+ <td>-extract
626
+ <em>width</em>x<em>height</em>+<em>x</em>+<em>y</em></td>
627
+
628
+ <td>Image::Info.<a href=
629
+ "info.html#extract">extract=</a>"<em>width</em>x<em>height</em>+
630
+ <em>x</em>+<em>y</em>"</td>
631
+ </tr>
632
+
633
+ <tr>
634
+ <td>-family <em>name</em></td>
635
+
636
+ <td>Draw#<a href=
637
+ "draw.html#family">family</a>(<em>name</em>) (for
638
+ drawing)<br />
639
+ Draw#<a href="draw.html#family_eq">family=</a><em>name</em>
640
+ (for annotation)</td>
641
+ </tr>
642
+
643
+ <tr>
644
+ <td>-fill <em>color</em></td>
645
+
646
+ <td>Draw#<a href="draw.html#fill">fill</a>(<em>color</em>)
647
+ (for drawing)<br />
648
+ Draw#<a href="draw.html#fill_eq">fill=</a><em>color</em>
649
+ (for annotation)</td>
650
+ </tr>
651
+
652
+ <tr>
653
+ <td>-filter <em>type</em></td>
654
+
655
+ <td>This option corresponds to the <a href=
656
+ "constants.html#FilterTypes">filter</a> option to
657
+ Image#<a href="image3htm#resize">resize</a>.</td>
658
+ </tr>
659
+
660
+ <tr>
661
+ <td>-flatten</td>
662
+
663
+ <td>ImageList#<a href="ilist.html#flatten">flatten</a></td>
664
+ </tr>
665
+
666
+ <tr>
667
+ <td>-flip</td>
668
+
669
+ <td>Image#<a href="image2.html#flip">flip</a></td>
670
+ </tr>
671
+
672
+ <tr>
673
+ <td>-floodfill <em>geometry</em> <em>color</em></td>
674
+
675
+ <td>Image#<a href=
676
+ "image1.html#color_floodfill">color_floodfill</a>(<em>x</em>,
677
+ <em>y</em>, <em>color</em>)</td>
678
+ </tr>
679
+
680
+ <tr>
681
+ <td>-flop</td>
682
+
683
+ <td>Image#<a href="image2.html#flop">flop</a></td>
684
+ </tr>
685
+
686
+ <tr>
687
+ <td>-font <em>name</em></td>
688
+
689
+ <td>Draw#<a href="draw.html#font">font</a>(<em>name</em>)
690
+ (for drawing)<br />
691
+ Draw#<a href="draw.html#font_eq">font=</a><em>name</em>
692
+ (for annotation)</td>
693
+ </tr>
694
+
695
+ <tr>
696
+ <td>-format <em>type</em></td>
697
+
698
+ <td>Image#<a href=
699
+ "imageattrs.html#format">format=</a><em>type</em></td>
700
+ </tr>
701
+
702
+ <tr>
703
+ <td>-frame
704
+ <em>width</em>x<em>height</em>+<em>outer-bevel-width</em>+
705
+ <em>inner-bevel-width</em></td>
706
+
707
+ <td>Image#<a href=
708
+ "image2.html#frame">frame</a>(<em>width</em>,
709
+ <em>height</em>, <em>x</em>, <em>y</em>,
710
+ <em>inner_bevel_width</em>, <em>outer_bevel_width</em>,
711
+ <em>color</em>)</td>
712
+ </tr>
713
+
714
+ <tr>
715
+ <td>-fuzz <em>distance</em><br />
716
+ -fuzz <em>distance%</em></td>
717
+
718
+ <td>Image#<a href=
719
+ "imageattrs.html#fuzz">fuzz=</a><em>distance</em><br />
720
+ Image#<a href=
721
+ "imageattrs.html#fuzz">fuzz=</a>"<em>distance%</em>"</td>
722
+ </tr>
723
+
724
+ <tr>
725
+ <td>-fx</td>
726
+
727
+ <td>No equivalent. For access to individual pixels in an
728
+ image, see Image#<a href="image3.html#view">view</a>.</td>
729
+ </tr>
730
+
731
+ <tr>
732
+ <td>-gamma <em>red_gamma,green_gamma,blue_gamma</em></td>
733
+
734
+ <td>Image#<a href=
735
+ "imageattrs.htlm#gamma_correct">gamma_correct</a>(<em>red_gamma</em>[,
736
+ <em>green_gamma</em>[, <em>blue_gamma</em>]])</td>
737
+ </tr>
738
+
739
+ <tr>
740
+ <td>-gaussian <em>radius</em>x<em>sigma</em></td>
741
+
742
+ <td>Image#<a href=
743
+ "image2.html#gaussian_blur">gaussian_blur</a>(<em>radius</em>=0.0,
744
+ <em>sigma</em>=1.0)<br />
745
+ Image#<a href=
746
+ "image2.html#gaussian_blur_channel">gaussian_blur_channel</a>(
747
+ <em>radius</em>=0.0, <em>sigma</em>=1.0 [, <em><a href=
748
+ "constants.html#ChannelType">channel</a></em>...])</td>
749
+ </tr>
750
+
751
+ <tr>
752
+ <td>-geometry widthxheight+x+y</td>
753
+
754
+ <td>Image#<a href=
755
+ "imageattrs.html#geometry">geometry=</a>"<em>width</em>x
756
+ <em>height</em>+<em>x</em>+<em>y</em>"</td>
757
+ </tr>
758
+
759
+ <tr>
760
+ <td>-gravity <em>type</em></td>
761
+
762
+ <td>Draw#<a href=
763
+ "draw.html#gravity">gravity</a>(<em><a href=
764
+ "constants.html#GravityType">type</a></em>) (for
765
+ drawing)<br />
766
+ Draw#<a href=
767
+ "draw.html#gravity_eq">gravity=</a><em><a href="constants.html#GravityType">
768
+ type</a></em> (for annotation)</td>
769
+ </tr>
770
+
771
+ <tr>
772
+ <td>-green-primary <em>x</em>,<em>y</em></td>
773
+
774
+ <td>Image#<a href=
775
+ "imageattrs.html#chromaticity">chromaticity=</a><em><a href="struct.html#Chromaticity">
776
+ chromaticity</a></em></td>
777
+ </tr>
778
+
779
+ <tr>
780
+ <td>-identify</td>
781
+
782
+ <td>Image#<a href="image2.html#inspect">inspect</a></td>
783
+ </tr>
784
+
785
+ <tr>
786
+ <td>-implode <em>factor</em></td>
787
+
788
+ <td>Image#<a href=
789
+ "image2.html#implode">implode</a>(<em>factor</em>)</td>
790
+ </tr>
791
+
792
+ <tr>
793
+ <td>-insert <em>index</em></td>
794
+
795
+ <td>ImageList#<a href=
796
+ "ilist.html#array_methods">insert</a>(<em>index</em>)<br />
797
+ ImageList#<a href=
798
+ "ilist.html#array_methods">[<em>index</em>]</a></td>
799
+ </tr>
800
+
801
+ <tr>
802
+ <td>-intent <em>type</em></td>
803
+
804
+ <td>Image#<a href=
805
+ "imageattrs.html#rendering_intent">rendering_intent=</a>
806
+ <em><a href=
807
+ "constants.html#RenderingIntent">type</a></em></td>
808
+ </tr>
809
+
810
+ <tr>
811
+ <td>-interlace <em>type</em></td>
812
+
813
+ <td>Image#<a href=
814
+ "imageattrs.html#interlace">interlace=</a><em><a href=
815
+ "constants.html#InterlaceType">type</a></em></td>
816
+ </tr>
817
+
818
+ <tr>
819
+ <td>-interpolate <em>type</em></td>
820
+
821
+ <td>Image#<a href=
822
+ "imageattrs.html#pixel_interpolation_method">pixel_interpolation_method=</a>
823
+ <em><a href=
824
+ "constants.html#InterpolatePixelMethod">type</a></em></td>
825
+ </tr>
826
+
827
+ <tr>
828
+ <td>-label <em>name</em></td>
829
+
830
+ <td>Image#<a href=
831
+ "image1.html#aset">['Label']=</a><em>name</em></td>
832
+ </tr>
833
+
834
+ <tr>
835
+ <td>-lat
836
+ <em>width</em>x<em>height</em>+<em>offset</em></td>
837
+
838
+ <td>Image#<a href=
839
+ "image1.html#adaptive_threshold">adaptive_threshold</a>(
840
+ <em>width</em>, <em>height</em>, <em>offset</em>)</td>
841
+ </tr>
842
+
843
+ <tr>
844
+ <td>-layers <em>method</em></td>
845
+
846
+ <td>ImageList#<a href=
847
+ "ilist.html#optimize_layers">optimize_layers</a>(<em>method</em>)</td>
848
+ </tr>
849
+
850
+ <tr>
851
+ <td>-level
852
+ <em>black-point</em>,<em>white-point</em>,<em>gamma</em></td>
853
+
854
+ <td>Image#<a href=
855
+ "image2.html#level">level</a>(<em>black_point</em>=0.0,
856
+ <em>white_point</em>=MaxRGB, <em>gamma</em>=1.0)</td>
857
+ </tr>
858
+
859
+ <tr>
860
+ <td>-limit <em>type</em> <em>value</em></td>
861
+
862
+ <td>Magick.<a href=
863
+ "magick.html#limit_resource">limit_resource</a>(<em>type</em>,
864
+ <em>value</em>)</td>
865
+ </tr>
866
+
867
+ <tr>
868
+ <td>-linewidth <em>width</em></td>
869
+
870
+ <td>Draw#<a href=
871
+ "draw.html#stroke_width">stroke_width</a>(<em>width</em>)
872
+ (for drawing)<br />
873
+ Draw#<a href=
874
+ "draw.html#stroke_width_eq">stroke_width=</a><em>width</em>
875
+ (for annotation)</td>
876
+ </tr>
877
+
878
+ <tr>
879
+ <td>-list <em>type</em></td>
880
+
881
+ <td>No equivalent</td>
882
+ </tr>
883
+
884
+ <tr>
885
+ <td>-log <em>string</em></td>
886
+
887
+ <td>No equivalent</td>
888
+ </tr>
889
+
890
+ <tr>
891
+ <td>-loop <em>iterations</em></td>
892
+
893
+ <td>ImageList#<a href=
894
+ "ilist.html#iterations_eq">iterations=</a><em>iterations</em></td>
895
+ </tr>
896
+
897
+ <tr>
898
+ <td>-magnify</td>
899
+
900
+ <td>Image#<a href="image2.html#magnify">magnify</a></td>
901
+ </tr>
902
+
903
+ <tr>
904
+ <td>-map <em>filename</em></td>
905
+
906
+ <td>Image#<a href=
907
+ "image2.html#map">map</a>(<em>reference</em>,
908
+ <em>dither</em>=<code>false</code>)<br />
909
+ ImageList#<a href=
910
+ "ilist.html#map">map</a>(<em>reference</em>, <span class=
911
+ "arg">dither</span>=<code>false</code>)</td>
912
+ </tr>
913
+
914
+ <tr>
915
+ <td>-mask filename</td>
916
+
917
+ <td>Image#<a href=
918
+ "imageattrs.html#mask">mask=</a><em>mask</em></td>
919
+ </tr>
920
+
921
+ <tr>
922
+ <td>-matte<br />
923
+ +matte</td>
924
+
925
+ <td>Image#<a href=
926
+ "imageattrs.html#matte">matte=</a><code>true</code><br />
927
+ Image#<a href=
928
+ "imageattrs.html#matte">matte=</a><code>false</code></td>
929
+ </tr>
930
+
931
+ <tr>
932
+ <td>-mattecolor <em>color</em></td>
933
+
934
+ <td>This option corresponds to the <em>color</em> option to
935
+ Image#<a href="image2.html#frame">frame</a>.</td>
936
+ </tr>
937
+
938
+ <tr>
939
+ <td>-median radius</td>
940
+
941
+ <td>Image#<a href=
942
+ "image2.html#median_filter">median_filter</a>(<em>radius</em>=1.0)</td>
943
+ </tr>
944
+
945
+ <tr>
946
+ <td>-metric <em>type</em></td>
947
+
948
+ <td>This option corresponds to the <em><a href=
949
+ "constants.html#MetricType">metric</a></em> option to
950
+ Image#<a href=
951
+ "image1.html#distortion_channel">distortion_channel</a>.</td>
952
+ </tr>
953
+
954
+ <tr>
955
+ <td>-modulate <em>value</em></td>
956
+
957
+ <td>Image#<a href=
958
+ "image2.html#modulate">modulate</a>(<em>brightness</em>=1.0,
959
+ <em>saturation</em>=1.0, <em>hue</em>=1.0)</td>
960
+ </tr>
961
+
962
+ <tr>
963
+ <td>-monitor</td>
964
+
965
+ <td>Image#<a href=
966
+ "imageattrs.html#monitor">monitor=</a></td>
967
+ </tr>
968
+
969
+ <tr>
970
+ <td>-monochrome</td>
971
+
972
+ <td>Image#<a href=
973
+ "imageattrs.html#image_type">image_type=</a> <a href=
974
+ "constants.html#ImageType">Magick::BilevelType</a></td>
975
+ </tr>
976
+
977
+ <tr>
978
+ <td>-morph <em>frames</em></td>
979
+
980
+ <td>ImageList#<a href=
981
+ "ilist#html#morph">morph</a>(<em>frames</em>)</td>
982
+ </tr>
983
+
984
+ <tr>
985
+ <td>-mosaic</td>
986
+
987
+ <td>ImageList#<a href="ilist.html#mosaic">mosaic</a></td>
988
+ </tr>
989
+
990
+ <tr>
991
+ <td>-motion-blur
992
+ <em>radius</em>x<em>sigma</em>+<em>angle</em></td>
993
+
994
+ <td>Image#<a href=
995
+ "image2.html#motion_blur">motion_blur</a>(<em>radius</em>=0.0,
996
+ <em>sigma</em>=1.0, <em>angle</em>=0.0)</td>
997
+ </tr>
998
+
999
+ <tr>
1000
+ <td>-negate<br />
1001
+ +negate</td>
1002
+
1003
+ <td>Image#<a href="image2.html#negate">negate</a><br />
1004
+ Image#<a href=
1005
+ "image2.html#negate">negate</a>(<code>true</code>)</td>
1006
+ </tr>
1007
+
1008
+ <tr>
1009
+ <td>-noise <em>radius</em><br />
1010
+ +noise <em>type</em></td>
1011
+
1012
+ <td>Image#<a href=
1013
+ "image3.html#reduce_noise">reduce_noise</a>(<em>radius</em>)<br />
1014
+
1015
+ Image#<a href="image1.html#add_noise">add_noise</a>(
1016
+ <a href="constants.html#NoiseType">type</a>)</td>
1017
+ </tr>
1018
+
1019
+ <tr>
1020
+ <td>-normalize</td>
1021
+
1022
+ <td>Image#<a href=
1023
+ "image2.html#normalize">normalize</a></td>
1024
+ </tr>
1025
+
1026
+ <tr>
1027
+ <td>-opaque <em>color</em></td>
1028
+
1029
+ <td>Image#<a href=
1030
+ "image2.html#opaque">opaque</a>(<em>color</em>,
1031
+ <em>fill</em>)</td>
1032
+ </tr>
1033
+
1034
+ <tr>
1035
+ <td>-ordered-dither <em>N</em>x<em>N</em></td>
1036
+
1037
+ <td>Image#<a href=
1038
+ "image1.html#ordered_dither">ordered_dither</a>(<em>N</em>)</td>
1039
+ </tr>
1040
+
1041
+ <tr>
1042
+ <td>-orient <em>orientation</em></td>
1043
+
1044
+ <td>Image#<a href=
1045
+ "imageattrs.html#orientation">orientation=</a><em><a href=
1046
+ "constants.html#OrientationType">orientation</a></em></td>
1047
+ </tr>
1048
+
1049
+ <tr>
1050
+ <td>-page
1051
+ <em>width</em>x<em>height</em>+<em>x</em>+<em>y</em><br />
1052
+ -page <em>media</em></td>
1053
+
1054
+ <td>Image::Info.<a href=
1055
+ "info.html#page">page=</a>"<em>width</em>x<em>height</em>+
1056
+ <em>x</em>+<em>y</em>"<br />
1057
+ Image::Info.<a href=
1058
+ "info.html#page">page=</a>"<em>media</em>"</td>
1059
+ </tr>
1060
+
1061
+ <tr>
1062
+ <td>-paint <em>radius</em></td>
1063
+
1064
+ <td>Image#<a href=
1065
+ "image2.html#oil_paint">oil_paint</a>(<em>radius</em>=3.0)</td>
1066
+ </tr>
1067
+
1068
+ <tr>
1069
+ <td>-ping</td>
1070
+
1071
+ <td>Image.<a href=
1072
+ "image1.html#ping">ping</a>(<em>filename</em>)</td>
1073
+ </tr>
1074
+
1075
+ <tr>
1076
+ <td>-pointsize <em>value</em></td>
1077
+
1078
+ <td>Draw.<a href=
1079
+ "draw.html#pointsize">pointsize</a>(<em>value</em>) (for
1080
+ drawing)<br />
1081
+ Draw.<a href=
1082
+ "draw.html#pointsize_eq">pointsize=</a><em>value</em> (for
1083
+ annotation)</td>
1084
+ </tr>
1085
+
1086
+ <tr>
1087
+ <td>-posterize <em>levels</em></td>
1088
+
1089
+ <td>Image#<a href=
1090
+ "image2.html#posterize">posterize</a>(<em>levels</em>=4,
1091
+ <em>dither</em>=<code>false</code>)</td>
1092
+ </tr>
1093
+
1094
+ <tr>
1095
+ <td>-preview <em>type</em></td>
1096
+
1097
+ <td>Image#<a href=
1098
+ "image3.html#preview">preview</a>(<em>type<a href=
1099
+ "constants.html#PreviewType"></a></em>)</td>
1100
+ </tr>
1101
+
1102
+ <tr>
1103
+ <td>-process command</td>
1104
+
1105
+ <td>No equivalent</td>
1106
+ </tr>
1107
+
1108
+ <tr>
1109
+ <td>-profile <em>filename</em><br />
1110
+ +profile <em>name</em></td>
1111
+
1112
+ <td>Image#<a href=
1113
+ "image1.html#add_profile">add_profile</a>(<em>filename</em>)<br />
1114
+
1115
+ Image#<a href=
1116
+ "image1.html#delete_profile">delete_profile</a>(<em>name</em>)</td>
1117
+ </tr>
1118
+
1119
+ <tr>
1120
+ <td>-quality <em>value</em></td>
1121
+
1122
+ <td>Image::Info#<a href=
1123
+ "info.html#quality">quality=</a><em>value</em></td>
1124
+ </tr>
1125
+
1126
+ <tr>
1127
+ <td>-quantize <em>colorspace</em></td>
1128
+
1129
+ <td>Image#<a href=
1130
+ "image3.html#quantize">quantize</a>(<em>number_colors</em>=256,
1131
+ <em>colorspace</em>=RGBColorspace,
1132
+ <em>dither</em>=<code>true</code>, <em>tree_depth</em>=0,
1133
+ <em>measure_error</em>=<code>false</code>)<br />
1134
+ ImageList#<a href=
1135
+ "ilist.html#quantize">quantize</a>(<em>number_colors</em>=256,
1136
+ <em>colorspace</em>=RGBColorspace,
1137
+ <em>dither</em>=<code>true</code>, <em>tree_depth</em>=0,
1138
+ <em>measure_error</em>=<code>false</code>)</td>
1139
+ </tr>
1140
+
1141
+ <tr>
1142
+ <td>-quiet</td>
1143
+
1144
+ <td>No equivalent</td>
1145
+ </tr>
1146
+
1147
+ <tr>
1148
+ <td>-radial-blur <em>angle</em></td>
1149
+
1150
+ <td>Image#<a href=
1151
+ "image3.html#radial_blur">radial_blur</a>(<em>angle</em>)</td>
1152
+ </tr>
1153
+
1154
+ <tr>
1155
+ <td>-raise <em>width</em>x<em>height</em><br />
1156
+ +raise <em>width</em>x<em>height</em></td>
1157
+
1158
+ <td>Image#<a href=
1159
+ "image3.html#raise">raise</a>(<em>width</em>,
1160
+ <em>height</em>, <code>true</code>)<br />
1161
+ Image#<a href="image3.html#raise">raise</a>(<em>width</em>,
1162
+ <em>height</em>, <code>false</code>)</td>
1163
+ </tr>
1164
+
1165
+ <tr>
1166
+ <td>-random-threshold <em>low</em>x<em>high</em></td>
1167
+
1168
+ <td>Image#<a href=
1169
+ "image3.html#random_threshold_channel">random_threshold_channel</a>("
1170
+ <em>low</em>x<em>high</em>" [, <em><a href=
1171
+ "constants.html#ChannelType">channel</a></em>...])</td>
1172
+ </tr>
1173
+
1174
+ <tr>
1175
+ <td>-red-primary <em>x</em>,<em>y</em></td>
1176
+
1177
+ <td>Image#<a href=
1178
+ "imageattrs.html#chromaticity">chromaticity=</a><em><a href="struct.html#Chromaticity">
1179
+ chromaticity</a></em></td>
1180
+ </tr>
1181
+
1182
+ <tr>
1183
+ <td>-regard-warnings</td>
1184
+
1185
+ <td>No equivalent</td>
1186
+ </tr>
1187
+
1188
+ <tr>
1189
+ <td>-region
1190
+ <em>width</em>x<em>height</em>+<em>x</em>+<em>y</em></td>
1191
+
1192
+ <td>No equivalent</td>
1193
+ </tr>
1194
+
1195
+ <tr>
1196
+ <td>-render</td>
1197
+
1198
+ <td>No equivalent</td>
1199
+ </tr>
1200
+
1201
+ <tr>
1202
+ <td>-repage <em>geometry</em><br />
1203
+ +repage</td>
1204
+
1205
+ <td>Image#<a href=
1206
+ "imageattrs.html#page">page=</a><em>geometry</em><br />
1207
+ This option corresponds to adding <code>true</code> as the
1208
+ last argument to Image#<a href=
1209
+ "image1.html#crop">crop</a>.</td>
1210
+ </tr>
1211
+
1212
+ <tr>
1213
+ <td>-resample <em>horizontal</em>x<em>vertical</em></td>
1214
+
1215
+ <td>Image#<a href=
1216
+ "image3.html#resample">resample</a>(<em>horizontal</em>,
1217
+ <em>vertical</em>)</td>
1218
+ </tr>
1219
+
1220
+ <tr>
1221
+ <td>-resize <em>width</em>x<em>height</em></td>
1222
+
1223
+ <td>Image#<a href=
1224
+ "image3.html#resize">resize</a>(<em>width</em>,
1225
+ <em>height</em>)</td>
1226
+ </tr>
1227
+
1228
+ <tr>
1229
+ <td>-roll +<em>x</em>+<em>y</em></td>
1230
+
1231
+ <td>Image#<a href="image3.html#roll">roll</a>(<em>x</em>,
1232
+ <em>y</em>)</td>
1233
+ </tr>
1234
+
1235
+ <tr>
1236
+ <td>-rotate <em>degrees</em></td>
1237
+
1238
+ <td>Image#<a href=
1239
+ "image3.html#rotate">rotate</a>(<em>degrees</em> [,
1240
+ <em>qualifier</em>])</td>
1241
+ </tr>
1242
+
1243
+ <tr>
1244
+ <td>-sample <em>width</em>x<em>height</em></td>
1245
+
1246
+ <td>Image#<a href=
1247
+ "image3.html#sample">sample</a>(<em>width</em>,
1248
+ <em>height</em>)</td>
1249
+ </tr>
1250
+
1251
+ <tr>
1252
+ <td>-sampling-factor
1253
+ <em>horizontal-factor</em>x<em>vertical-factor</em></td>
1254
+
1255
+ <td>Image::Info#<a href=
1256
+ "info.html#sampling_factor">sampling_factor=</a><em>horizontal-factor</em>x
1257
+ <em>vertical-factor</em></td>
1258
+ </tr>
1259
+
1260
+ <tr>
1261
+ <td>-scale <em>width</em>x<em>height</em></td>
1262
+
1263
+ <td>Image#<a href=
1264
+ "image3.html#scale">scale</a>(<em>width</em>,
1265
+ <em>height</em>)</td>
1266
+ </tr>
1267
+
1268
+ <tr>
1269
+ <td>-scene <em>value</em></td>
1270
+
1271
+ <td>ImageList#<a href=
1272
+ "ilist.html#scene">scene=</a><em>value</em></td>
1273
+ </tr>
1274
+
1275
+ <tr>
1276
+ <td>-scenes <em>value</em>-<em>value</em></td>
1277
+
1278
+ <td>No equivalent</td>
1279
+ </tr>
1280
+
1281
+ <tr>
1282
+ <td>-seed</td>
1283
+
1284
+ <td>No equivalent</td>
1285
+ </tr>
1286
+
1287
+ <tr>
1288
+ <td>-segment
1289
+ <em>cluster-threshold</em>x<em>smoothing-threshold</em></td>
1290
+
1291
+ <td>Image#<a href=
1292
+ "image3.html#segment">segment</a>(<em>colorspace</em>=
1293
+ <code>RGBColorspace</code>, <em>cluster_threshold</em>=1.0,
1294
+ <em>smoothing_threshold</em>=1.5,
1295
+ <em>verbose</em>=false)</td>
1296
+ </tr>
1297
+
1298
+ <tr>
1299
+ <td>-separate</td>
1300
+
1301
+ <td>Image#<a href=
1302
+ "image1.html#channel">channel</a>(<em><a href=
1303
+ "constants.html#ChannelType">type</a></em>)</td>
1304
+ </tr>
1305
+
1306
+ <tr>
1307
+ <td>-sepia-tone <em>threshold</em></td>
1308
+
1309
+ <td>Image#<a href=
1310
+ "image3.html#sepiatone">sepiatone</a>(<em>threshold</em>=MaxRGB)</td>
1311
+ </tr>
1312
+
1313
+ <tr>
1314
+ <td>-set <em>attribute</em> <em>value</em></td>
1315
+
1316
+ <td>Image#<a href=
1317
+ "image1.html#aset">[</a>'<em>attribute</em>'<a href=
1318
+ "image1.html#aset">] =</a> <em>value</em></td>
1319
+ </tr>
1320
+
1321
+ <tr>
1322
+ <td>-shade <em>azimuth</em>x<em>elevation</em></td>
1323
+
1324
+ <td>Image#<a href=
1325
+ "image3.html#shade">shade</a>(<em>shading</em>=<code>false</code>,
1326
+ <em>azimuth</em>=30, <em>elevation</em>=30)</td>
1327
+ </tr>
1328
+
1329
+ <tr>
1330
+ <td>-shadow
1331
+ <em>opacity</em>x<em>sigma</em>+<em>x</em>+<em>y</em></td>
1332
+
1333
+ <td>Image#<a href=
1334
+ "image3.html#shadow">shadow</a>(<em>x</em>=4, <em>y</em>=4,
1335
+ <em>sigma</em>=4.0, <em>opacity</em>=4.0)</td>
1336
+ </tr>
1337
+
1338
+ <tr>
1339
+ <td>-sharpen <em>radius</em>x<em>sigma</em></td>
1340
+
1341
+ <td>Image#<a href=
1342
+ "image3.html#sharpen">sharpen</a>(<em>radius</em>=0.0,
1343
+ <em>sigma</em>=1.0)</td>
1344
+ </tr>
1345
+
1346
+ <tr>
1347
+ <td>-shave <em>width</em>x<em>height</em></td>
1348
+
1349
+ <td>Image#<a href=
1350
+ "image3.html#shave">shave</a>(<em>width</em>,
1351
+ <em>height</em>)</td>
1352
+ </tr>
1353
+
1354
+ <tr>
1355
+ <td>-shear <em>x-degrees</em>x<em>y-degrees</em></td>
1356
+
1357
+ <td>Image#<a href=
1358
+ "image3.html#shear">shear</a>(<em>x_degrees</em>,
1359
+ <em>y_degrees</em>)</td>
1360
+ </tr>
1361
+
1362
+ <tr>
1363
+ <td>-sigmoidal-contrast
1364
+ <em>contrast</em>x<em>mid-point</em></td>
1365
+
1366
+ <td>Image#<a href=
1367
+ "image3.html#sigmoidal_contrast_channel">sigmoidal_contrast_channel</a>(
1368
+ <em>contrast</em>=3.0, <em>mid_point</em>=50.0,
1369
+ <em>sharpen</em>=<code>false</code> [, <em><a href=
1370
+ "constants.html#ChannelType">channel</a></em>...])</td>
1371
+ </tr>
1372
+
1373
+ <tr>
1374
+ <td>-size
1375
+ <em>width</em>x<em>height</em>+<em>offset</em></td>
1376
+
1377
+ <td>Image::Info#<a href=
1378
+ "info.html#size">size=</a>"<em>width</em>x<em>height</em>+
1379
+ <em>offset</em>"</td>
1380
+ </tr>
1381
+
1382
+ <tr>
1383
+ <td>-sketch
1384
+ <em>radius</em>x<em>sigma</em>+<em>angle</em></td>
1385
+
1386
+ <td>Image#<a href=
1387
+ "image3.html#sketch">sketch</a>(<em>radius</em>=0.0,
1388
+ <em>sigma</em>=1.0, <em>angle</em>=0.0)</td>
1389
+ </tr>
1390
+
1391
+ <tr>
1392
+ <td>-solarize <em>threshold</em></td>
1393
+
1394
+ <td>Image#<a href=
1395
+ "image3.html#solarize">solarize</a>(<em>threshold</em>=50)</td>
1396
+ </tr>
1397
+
1398
+ <tr>
1399
+ <td>-splice
1400
+ <em>width</em>x<em>height</em>+<em>x</em>+<em>y</em></td>
1401
+
1402
+ <td>Image#<a href=
1403
+ "image3.html#splice">splice</a>(<em>x</em>, <em>y</em>,
1404
+ <em>width</em>, <em>height</em> [, <em>color</em>])</td>
1405
+ </tr>
1406
+
1407
+ <tr>
1408
+ <td>-spread <em>amount</em></td>
1409
+
1410
+ <td>Image#<a href=
1411
+ "image3.html#spread">spread</a>(<em>amount</em>=3)</td>
1412
+ </tr>
1413
+
1414
+ <tr>
1415
+ <td>-stegano <em>offset</em></td>
1416
+
1417
+ <td>Image#<a href=
1418
+ "image3.html#stegano">stegano</a>(<em>watermark</em>,
1419
+ <em>offset</em>)</td>
1420
+ </tr>
1421
+
1422
+ <tr>
1423
+ <td>-stereo</td>
1424
+
1425
+ <td>Image#<a href=
1426
+ "image3.html#stereo">stereo</a>(<em>offset_image</em>)</td>
1427
+ </tr>
1428
+
1429
+ <tr>
1430
+ <td>-stretch <em>type</em></td>
1431
+
1432
+ <td>Draw#<a href=
1433
+ "draw.html#font_stretch">font_stretch</a>(<em><a href=
1434
+ "constants.html#StretchType">type</a></em>) (for
1435
+ drawing)<br />
1436
+ Draw#<a href=
1437
+ "draw.html#font_stretch_eq">font_stretch=</a><em><a href=
1438
+ "constants.html#StretchType">type</a></em> (for
1439
+ annotation)</td>
1440
+ </tr>
1441
+
1442
+ <tr>
1443
+ <td>-storage-type <em>type</em></td>
1444
+
1445
+ <td>This option corresponds to the <em><a href=
1446
+ "constants.html#StorageType">type</a></em> argument to
1447
+ Image#<a href="image2.html#import_pixels">import_pixels</a>
1448
+ and Image#<a href=
1449
+ "image2.html#export_pixels_to_str">export_pixels_to_str</a></td>
1450
+ </tr>
1451
+
1452
+ <tr>
1453
+ <td>-strip</td>
1454
+
1455
+ <td>Image#<a href="image3.html#strip_bang">strip!</a></td>
1456
+ </tr>
1457
+
1458
+ <tr>
1459
+ <td>-stroke <em>color</em></td>
1460
+
1461
+ <td>Draw#<a href=
1462
+ "draw.html#stroke">stroke</a>(<em>color</em>) (for
1463
+ drawing)<br />
1464
+ Draw#<a href=
1465
+ "draw.html#stroke_eq">stroke=</a><em>color</em> (for
1466
+ annotation)</td>
1467
+ </tr>
1468
+
1469
+ <tr>
1470
+ <td>-strokewidth <em>value</em></td>
1471
+
1472
+ <td>Draw#<a href=
1473
+ "draw.html#stroke_width">stroke_width</a>(<em>value</em>)
1474
+ (for drawing)<br />
1475
+ Draw#<a href=
1476
+ "draw.html#stroke_width_eq">stroke_width=</a><em>value</em>
1477
+ (for annotation)</td>
1478
+ </tr>
1479
+
1480
+ <tr>
1481
+ <td>-support <em>factor</em></td>
1482
+
1483
+ <td>This option corresponds to the <em>support</em>
1484
+ argument to Image#<a href=
1485
+ "image3.html#resize">resize</a>.</td>
1486
+ </tr>
1487
+
1488
+ <tr>
1489
+ <td>-swirl <em>degrees</em></td>
1490
+
1491
+ <td>Image#<a href=
1492
+ "image3.html#swirl">swirl</a>(<em>degrees</em>)</td>
1493
+ </tr>
1494
+
1495
+ <tr>
1496
+ <td>-text-font</td>
1497
+
1498
+ <td>No equivalent</td>
1499
+ </tr>
1500
+
1501
+ <tr>
1502
+ <td>-texture <em>filename</em></td>
1503
+
1504
+ <td>Image::Info#<a href=
1505
+ "info.html#texture">texture=</a><em>image</em></td>
1506
+ </tr>
1507
+
1508
+ <tr>
1509
+ <td>-threshold <em>value</em></td>
1510
+
1511
+ <td>Image#<a href=
1512
+ "image1.html#bilevel_channel">bilevel_channel</a>(<em>value</em>
1513
+ [, <em><a href=
1514
+ "constants.html#ChannelType">channel</a></em>...])</td>
1515
+ </tr>
1516
+
1517
+ <tr>
1518
+ <td>-thumbnail widthxheight</td>
1519
+
1520
+ <td>Image#<a href=
1521
+ "image1.html#thumbnail">thumbnail</a>(<em>width</em>,
1522
+ <em>height</em>)</td>
1523
+ </tr>
1524
+
1525
+ <tr>
1526
+ <td>-tile <em>filename</em></td>
1527
+
1528
+ <td>Draw#<a href=
1529
+ "draw.html#tile">tile</a>(<em>image</em>)</td>
1530
+ </tr>
1531
+
1532
+ <tr>
1533
+ <td>-tint</td>
1534
+
1535
+ <td>No equivalent</td>
1536
+ </tr>
1537
+
1538
+ <tr>
1539
+ <td>-transform</td>
1540
+
1541
+ <td>Image#<a href=
1542
+ "image1.html#affine_transform">affine_transform</a>(<em><a href="struct.html#AffineMatrix">
1543
+ matrix</a></em>)</td>
1544
+ </tr>
1545
+
1546
+ <tr>
1547
+ <td>-transparent <em>color</em></td>
1548
+
1549
+ <td>Image#transparent(<em>color</em>, <em><a href=
1550
+ "constants.html#Opacity">opacity</a></em>=TransparentOpacity)</td>
1551
+ </tr>
1552
+
1553
+ <tr>
1554
+ <td>-transparent-color <em>color</em></td>
1555
+
1556
+ <td>Image#<a href=
1557
+ "imageattrs.html#transparent_color">transparent_color=</a>
1558
+ <em>color</em></td>
1559
+ </tr>
1560
+
1561
+ <tr>
1562
+ <td>-transpose</td>
1563
+
1564
+ <td>Image#<a href=
1565
+ "image3.html#transpose">transpose</a></td>
1566
+ </tr>
1567
+
1568
+ <tr>
1569
+ <td>-transverse</td>
1570
+
1571
+ <td>Image#<a href=
1572
+ "image3.html#transverse">transverse</a></td>
1573
+ </tr>
1574
+
1575
+ <tr>
1576
+ <td>-treedepth <em>value</em></td>
1577
+
1578
+ <td>This option corresponds to the <em>tree_depth</em>
1579
+ argument to Image#<a href=
1580
+ "image3.html#quantize">quantize</a> and ImageList#<a href=
1581
+ "ilist.html#quantize">quantize</a>.</td>
1582
+ </tr>
1583
+
1584
+ <tr>
1585
+ <td>-trim</td>
1586
+
1587
+ <td>Image#<a href="image3.html#trim">trim</a></td>
1588
+ </tr>
1589
+
1590
+ <tr>
1591
+ <td>-type <em>type</em></td>
1592
+
1593
+ <td>Image#type=<em><a href=
1594
+ "constants.html#ImageType">type</a></em></td>
1595
+ </tr>
1596
+
1597
+ <tr>
1598
+ <td>-undercolor <em>color</em></td>
1599
+
1600
+ <td>Draw#<a href=
1601
+ "draw.html#text_undercolor">text_undercolor</a>(<em>color</em>)<br />
1602
+
1603
+ Draw#<a href=
1604
+ "draw.html#undercolor">undercolor=</a><em>color</em></td>
1605
+ </tr>
1606
+
1607
+ <tr>
1608
+ <td>-unique-colors</td>
1609
+
1610
+ <td>Image#<a href=
1611
+ "image3.html#unique_colors">unique_colors</a></td>
1612
+ </tr>
1613
+
1614
+ <tr>
1615
+ <td>-units <em>type</em></td>
1616
+
1617
+ <td>Image#<a href=
1618
+ "imageattrs.html#units">units=</a><em><a href=
1619
+ "constants.html#ResolutionType">type</a></em></td>
1620
+ </tr>
1621
+
1622
+ <tr>
1623
+ <td>-unsharp
1624
+ <em>radius</em>x<em>sigma</em>+<em>amount</em>+<em>threshold</em></td>
1625
+
1626
+ <td>Image#<a href=
1627
+ "image3.html#unsharp_mask">unsharp_mask</a>(<em>radius</em>=0.0,
1628
+ <em>sigma</em>=1.0, <em>amount</em>=1.0,
1629
+ <em>threshold</em>=0.05)</td>
1630
+ </tr>
1631
+
1632
+ <tr>
1633
+ <td>-verbose</td>
1634
+
1635
+ <td>No equivalent</td>
1636
+ </tr>
1637
+
1638
+ <tr>
1639
+ <td>-version</td>
1640
+
1641
+ <td><a href=
1642
+ "constants.html#Miscellaneous_constants">Magick::Long_version</a></td>
1643
+ </tr>
1644
+
1645
+ <tr>
1646
+ <td>-view <em>string</em></td>
1647
+
1648
+ <td><a href=
1649
+ "info.html#view">Image::Info#view=</a><em>string</em></td>
1650
+ </tr>
1651
+
1652
+ <tr>
1653
+ <td>-vignette
1654
+ <em>radius</em>x<em>sigma</em>+<em>amount</em>+<em>threshold</em></td>
1655
+
1656
+ <td>Image#<a href=
1657
+ "image3.html#vignette">vignette</a>(<em>x</em>, <em>y</em>,
1658
+ <em>radius</em>=0.0, <em>sigma</em>=10.0)</td>
1659
+ </tr>
1660
+
1661
+ <tr>
1662
+ <td>-virtual-pixel <em>method</em></td>
1663
+
1664
+ <td>Image#<a href=
1665
+ "imageattrs.html#virtual_pixel_method">virtual_pixel_method</a>=
1666
+ <em>method</em></td>
1667
+ </tr>
1668
+
1669
+ <tr>
1670
+ <td>-wave <em>amplitude</em>x<em>wavelength</em></td>
1671
+
1672
+ <td>Image#<a href=
1673
+ "image3.html#wave">wave</a>(<em>amplitude</em>=25.0,
1674
+ <em>wavelength</em>=150.0)</td>
1675
+ </tr>
1676
+
1677
+ <tr>
1678
+ <td>-weight <em>type</em></td>
1679
+
1680
+ <td>Draw#<a href=
1681
+ "draw.html#font_weight">font_weight</a>(<a href=
1682
+ "constants.html#WeightType">type</a>) (for drawing)<br />
1683
+ Draw#<a href=
1684
+ "draw.html#font_weight_eq">font_weight=</a><em><a href=
1685
+ "constants.html#WeightType">type</a></em></td>
1686
+ </tr>
1687
+
1688
+ <tr>
1689
+ <td>-white-point <em>x</em>.<em>y</em></td>
1690
+
1691
+ <td>Image#<a href=
1692
+ "imageattrs.html#chromaticity">chromaticity=</a><em><a href="struct.html#Chromaticity">
1693
+ chromaticity</a></em></td>
1694
+ </tr>
1695
+
1696
+ <tr>
1697
+ <td>-white-threshold <em>threshold</em></td>
1698
+
1699
+ <td>Image#<a href=
1700
+ "image3.html#white_threshold">white_threshold</a>(<em>red_channel</em>
1701
+ [, <em>green_channel</em>[, <em>blue_channel</em>[,
1702
+ <em>opacity_channel</em>]]])</td>
1703
+ </tr>
1704
+
1705
+ <tr>
1706
+ <td>-write <em>filename</em></td>
1707
+
1708
+ <td>Image#<a href=
1709
+ "image3.html#write">write</a>(<em>filename</em>)<br />
1710
+ ImageList#<a href=
1711
+ "ilist.html#write">write</a>(<em>filename</em>)</td>
1712
+ </tr>
1713
+ </tbody>
1714
+ </table>
1715
+
1716
+ <h2 class="methods" id="composite">composite</h2>
1717
+
1718
+ <table class="striped" summary=
1719
+ "composite options and equivalent methods">
1720
+ <thead>
1721
+ <tr>
1722
+ <th>Magick Option</th>
1723
+
1724
+ <th>RMagick Method</th>
1725
+ </tr>
1726
+ </thead>
1727
+
1728
+ <tbody>
1729
+ <tr>
1730
+ <td>-blend <em>src-percent</em>x<em>dst-percent</em></td>
1731
+
1732
+ <td>Image#<a href=
1733
+ "image1.html#blend">blend</a>(<em>overlay</em>,
1734
+ <em>src_percent</em>, <em>dst_percent</em>,
1735
+ <em>x_offset</em>=0, <em>y_offset</em>=0)</td>
1736
+ </tr>
1737
+
1738
+ <tr>
1739
+ <td>-displace
1740
+ <em>x-amplitude</em>x<em>y-amplitude</em></td>
1741
+
1742
+ <td>Image#<a href=
1743
+ "image1.html#displace">displace</a>(<em>displacement_map</em>,
1744
+ <em>x_amplitude</em>, <em>y_amplitude</em>,
1745
+ <em>x_offset</em>=0, <em>y_offset</em>=0)</td>
1746
+ </tr>
1747
+
1748
+ <tr>
1749
+ <td>-dissolve
1750
+ <em>src_percent</em>x<em>dst_percent</em></td>
1751
+
1752
+ <td>Image#<a href=
1753
+ "image1.html#dissolve">dissolve</a>(<span class=
1754
+ "arg">overlay</span>, <span class="arg">src_percent</span>,
1755
+ <span class="arg">dst_percent</span>, <span class=
1756
+ "arg">x_offset</span>=0, <span class=
1757
+ "arg">y_offset</span>=0)</td>
1758
+ </tr>
1759
+
1760
+ <tr>
1761
+ <td>-watermark <em>lightness</em></td>
1762
+
1763
+ <td>Image#<a href=
1764
+ "image3.html#watermark">watermark</a>(<em>mark</em>,
1765
+ <em>lightness</em>=1.0, <em>saturation</em>=1.0,
1766
+ <em>x_offset</em>=0, <em>y_offset</em>=0)</td>
1767
+ </tr>
1768
+ </tbody>
1769
+ </table>
1770
+
1771
+ <h2 class="methods" id="montage">montage</h2>
1772
+
1773
+ <div class="intro">
1774
+ <h3>Notes</h3>
1775
+
1776
+ <p>The RMagick methods that correspond to
1777
+ <code>montage</code>'s options are in the
1778
+ <code>Magick::ImageList::Montage</code> class.</p>
1779
+ </div>
1780
+
1781
+ <table class="striped" summary=
1782
+ "montage options and equivalent methods">
1783
+ <thead>
1784
+ <tr>
1785
+ <th>Magick Option</th>
1786
+
1787
+ <th>RMagick Method</th>
1788
+ </tr>
1789
+ </thead>
1790
+
1791
+ <tbody>
1792
+ <tr>
1793
+ <td>-backgroundcolor <em>color</em></td>
1794
+
1795
+ <td>Montage#<a href=
1796
+ "ilist.html#montage">background_color=</a><em>color</em></td>
1797
+ </tr>
1798
+
1799
+ <tr>
1800
+ <td>-bordercolor <em>color</em></td>
1801
+
1802
+ <td>Montage#<a href=
1803
+ "ilist.html#montage">border_color=</a><em>color</em></td>
1804
+ </tr>
1805
+
1806
+ <tr>
1807
+ <td>-borderwidth <em>value</em></td>
1808
+
1809
+ <td>Montage#<a href=
1810
+ "ilist.html#montage">border_width=</a><em>value</em></td>
1811
+ </tr>
1812
+
1813
+ <tr>
1814
+ <td>-clone</td>
1815
+
1816
+ <td>No equivalent</td>
1817
+ </tr>
1818
+
1819
+ <tr>
1820
+ <td>-compose <em>operator</em></td>
1821
+
1822
+ <td>Montage#<a href=
1823
+ "ilist.html#montage">compose=</a><em>operator</em></td>
1824
+ </tr>
1825
+
1826
+ <tr>
1827
+ <td>-fill <em>color</em></td>
1828
+
1829
+ <td>Montage#<a href=
1830
+ "ilist.html#montage">fill=</a><em>color</em></td>
1831
+ </tr>
1832
+
1833
+ <tr>
1834
+ <td>-frame <em>geometry</em></td>
1835
+
1836
+ <td>Montage#<a href=
1837
+ "ilist.html#montage">frame=</a>"<em>geometry</em>"</td>
1838
+ </tr>
1839
+
1840
+ <tr>
1841
+ <td>-geometry <em>geometry</em></td>
1842
+
1843
+ <td>Montage#<a href=
1844
+ "ilist.html#montage">geometry=</a>"<em>geometry</em>"</td>
1845
+ </tr>
1846
+
1847
+ <tr>
1848
+ <td>-gravity <em>type</em></td>
1849
+
1850
+ <td>Montage#<a href=
1851
+ "ilist.html#montage">gravity=</a><em>type</em></td>
1852
+ </tr>
1853
+
1854
+ <tr>
1855
+ <td>-mattecolor <em>color</em></td>
1856
+
1857
+ <td>Montage#<a href=
1858
+ "ilist.html#montage">matte_color=</a><em>color</em></td>
1859
+ </tr>
1860
+
1861
+ <tr>
1862
+ <td>-mode <em>type</em></td>
1863
+
1864
+ <td>No equivalent</td>
1865
+ </tr>
1866
+
1867
+ <tr>
1868
+ <td>-pointsize <em>value</em></td>
1869
+
1870
+ <td>Montage#<a href=
1871
+ "ilist.html#montage">pointsize=</a><em>value</em></td>
1872
+ </tr>
1873
+
1874
+ <tr>
1875
+ <td>-shadow</td>
1876
+
1877
+ <td>Montage#<a href=
1878
+ "ilist.html#montage">shadow=</a><code>true</code></td>
1879
+ </tr>
1880
+
1881
+ <tr>
1882
+ <td>-stroke <em>color</em></td>
1883
+
1884
+ <td>Montage#<a href=
1885
+ "ilist.html#montage">stroke=</a><em>color</em></td>
1886
+ </tr>
1887
+
1888
+ <tr>
1889
+ <td>-texture <em>filename</em></td>
1890
+
1891
+ <td>Montage#<a href=
1892
+ "ilist.html#montage">texture=</a><em>image</em></td>
1893
+ </tr>
1894
+
1895
+ <tr>
1896
+ <td>-tile <em>geometry</em></td>
1897
+
1898
+ <td>Montage#<a href=
1899
+ "ilist.html#montage">tile=</a><em>geometry</em></td>
1900
+ </tr>
1901
+
1902
+ <tr>
1903
+ <td>-title <em>string</em></td>
1904
+
1905
+ <td>Montage#<a href=
1906
+ "ilist.html#montage">title=</a><em>string</em></td>
1907
+ </tr>
1908
+ </tbody>
1909
+ </table>
1910
+
1911
+ <p class="spacer">&nbsp;</p>
1912
+
1913
+ <div class="nav">
1914
+ &laquo; <a href="index.html">Prev</a> | <a href=
1915
+ "imusage.html">Contents</a> | <a href="comtasks.html">Next</a>
1916
+ &raquo;
1917
+ </div>
1918
+ </body>
1919
+ </html>