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
|
.TH conjure 1 "Date: 2004/01/01 01:00:00" "ImageMagick"
.SH CONJURE
.SH NAME
conjure - process a Magick Scripting Language (MSL) script
\fBWARNING: Conjure and MSL are in very early development and the
syntax is subject to change!\fP
.SH SYNOPSIS
\fBconjure\fP \fB[\fP \fIoptions\fP \fB]\fP \fIscript.msl\fP
\fB[ [\fP \fIoptions\fP \fB]\fP \fIscript.msl\fP \fB]\fP
.SH DESCRIPTION
The Magick scripting language (MSL) will primarily
benefit those that want to accomplish custom image processing tasks but
do not wish to program, or those that do not have access to a Perl
interpreter or a compiler. The interpreter is called conjure and here
is an example script:
<?xml version="1.0" encoding="UTF-8"?>
<image size="400x400" >
<read filename="image.gif" />
<get width="base-width" height="base-height" />
<resize geometry="%[dimensions]" />
<get width="width" height="height" />
<print output=
"Image sized from %[base-width]x%[base-height]
to %[width]x%[height].\\n" />
<write filename="image.png" />
</image>
invoked with
conjure -dimensions 400x400 incantation.msl
All operations will closely follow the key/value pairs defined in
PerlMagick, unless otherwise noted.
\fBConjure\fP is in the early stages of development as of
April 2002.
This early announcement is to allow ImageMagick users to contribute
ideas early in the process so when the scripting language is released it
will be useful/stable from the get-go! If you want to contribute
suggestions about the Magick scripting language (MSL), post them to the
ImageMagick tools list at imagemagick-tools @ lists.sourceforge.net.
.SH OPTIONS
Options are processed in command line order. Any option you specify on
the command line remains in effect until it is explicitly changed by specifying
the option again with a different effect, or if it is changed by a statement
in the scripting language.
You can define your own keyword/value pairs on the command line.
The script can then use this information when setting values by including
%[keyword] in the string. For example, if you included
"-dimensions 400x400" on the command line, as illustrated above,
then any string
containing "%[dimensions]" would have 400x400 substituted.
The "%[string]" can be used either an entire string, such as
geometry="%[dimensions]" or as a part of a string such as
filename="%[basename].png".
The keyword can be any string except for the following reserved
strings (in any upper, lower, or mixed case variant): \fBdebug\fP,
\fBhelp\fP, and \fBverbose\fP, whose usage is described below.
The value can be any string. If
either the keyword or the value contains white space or any
symbols that have special meanings to your shell such as "#",
"|",
or
"%", enclose the string in quotation marks or use "\\" to escape the white
space and special symbols.
Keywords and values are case dependent. "Key",
"key",
and "KEY" would
be three different keywords.
For a more detailed description of each option, see
Options, above.
\fIImageMagick(1)\fP.
.TP
.B "-debug \fI<events>"\fP
\fRenable debug printout
.TP
.B "-define \fI<key>{=<value>},..."\fP
\fRadd coder/decoder specific options
.TP
.B "-help"
\fRprint usage instructions
.TP
.B "-log \fI<string>"\fP
\fRSpecify format for debug log
.TP
.B "-verbose"
\fRprint detailed information about the image
.TP
.B "-version"
\fRprint ImageMagick version string
.SH MAGICK SCRIPTING LANGUAGE
The Magick Scripting Language (MSL) presently defines the following
elements and their attributes:
.in 15
.in 15
.B "<image>"
.in 20
\fR
.in 20
Define a new image object.
\fB</image>\fP destroys it. Because of this, if you wish
to reference multiple "subimages" (aka pages or layers),
you can embed one \fBimage\fP element inside of
another. For example:
.in 15
.in 20
<image>
<read filename="input.png" />
<get width="base-width" height="base-height" />
<image height="base-height" width="base-width">
<image />
<write filename="output.mng" />
</image>
.in 15
.in 20
<image size="400x400" />
.in 15
.in 15
.B "<group>"
.in 20
\fR
.in 20
Define a new group of image objects.
By default, images are only valid for the life of
their \fB<image>\fPelement.
.in 15
.in 20
<image> -- creates the image
..... -- do stuff with it
</image> -- dispose of the image
.in 15
.in 20
However, in a group, all images in that group will stay
around for the life of the group:
.in 15
.in 20
<group> -- start a group
<image> -- create an image
.... -- do stuff
</image> -- NOOP
<image> -- create another image
.... -- do more stuff
</image> -- NOOP
<write filename="image.mng" /> -- output
</group> -- dispose of both images
.in 15
.in 15
.B "<read>"
.in 20
\fR
.in 20
Read a new image from a disk file.
.in 15
.in 20
<read filename="image.gif" />
.in 15
.in 20
To read two images use
.in 15
.in 20
<read filename="image.gif" />
<read filename="image.png />
.in 15
.in 15
.B "<write>"
.in 20
\fR
.in 20
Write the image(s) to disk, either as
a single multiple-image file or multiple ones if necessary.
.in 15
.in 20
<write filename=image.tiff" />
.in 15
.B "<get>"
.in 20
\fR
.in 20
Get any attribute recognized by
PerlMagick's GetAttribute() and stores it as an image attribute for later
use. Currently only \fIwidth\fP and \fIheight\fP are supported.
.in 15
.in 20
<get width="base-width" height="base-height" />
<print output="Image size is %[base-width]x%[base-height].\\n" />
.in 15
.in 15
.B "<set>"
.in 20
\fR
.in 20
background, bordercolor, clip-mask, colorspace, density,
magick, mattecolor, opacity. Set an attribute recognized by
PerlMagick's GetAttribute().
.in 15
.in 15
.B "<border>"
.in 20
\fR
.in 20
fill, geometry, height, width
.in 15
.in 15
.B "<blur>"
.in 20
\fR
.in 20
radius, sigma
.in 15
.in 15
.B "<charcoal>"
.in 20
\fR
.in 20
radius, sigma
.in 15
.in 15
.B "<chop>"
.in 20
\fR
.in 20
geometry, height, width, x, y
.in 15
.in 15
.B "<crop>"
.in 20
\fR
.in 20
geometry, height, width, x, y
.in 15
.in 15
.B "<despeckle>"
.in 20
\fR
.in 15
.B "<emboss>"
.in 20
\fR
.in 20
radius, sigma
.in 15
.in 15
.B "<enhance>"
.in 20
\fR
.in 15
.B "<equalize>"
.in 20
\fR
.in 15
.B "<flip>"
.in 20
\fR
.in 15
.B "<flop>"
.in 20
\fR
.in 15
.B "<frame>"
.in 20
\fR
.in 20
fill, geometry, height, width, x, y, inner, outer
.in 15
.in 15
.B "<get>"
.in 20
\fR
.in 20
height, width
.in 15
.in 15
.B "<image>"
.in 20
\fR
.in 20
background, color, id, size
.in 15
.in 15
.B "<magnify>"
.in 20
\fR
.in 15
.B "<minify>"
.in 20
\fR
.in 15
.B "<normalize>"
.in 20
\fR
.in 15
.B "<print>"
.in 20
\fR
.in 20
output
.in 15
.in 15
.B "<read>"
.in 20
\fR
.in 15
.B "<resize>"
.in 20
\fR
.in 20
blur, filter, geometry, height, width
.in 15
.in 15
.B "<roll>"
.in 20
\fR
.in 20
geometry, x, y
.in 15
.in 15
.B "<rotate>"
.in 20
\fR
.in 20
degrees
.in 15
.in 15
.B "<sample>"
.in 20
\fR
.in 20
geometry, height, width
.in 15
.in 15
.B "<scale>"
.in 20
\fR
.in 20
geometry, height, width
.in 15
.in 15
.B "<sharpen>"
.in 20
\fR
.in 20
radius, sigma
.in 15
.in 15
.B "<shave>"
.in 20
\fR
.in 20
geometry, height, width
.in 15
.in 15
.B "<shear>"
.in 20
\fR
.in 20
x, y
.in 15
.in 15
.B "<solarize>"
.in 20
\fR
.in 20
threshold
.in 15
.in 15
.B "<spread>"
.in 20
\fR
.in 20
radius
.in 15
.in 15
.B "<stegano>"
.in 20
\fR
.in 20
image
.in 15
.in 15
.B "<stereo>"
.in 20
\fR
.in 20
image
.in 15
.in 15
.B "<swirl>"
.in 20
\fR
.in 20
degrees
.in 15
.in 15
.B "<texture>"
.in 20
\fR
.in 20
image
.in 15
.in 15
.B "<threshold>"
.in 20
\fR
.in 20
threshold
.in 15
.in 15
.B "<transparent>"
.in 20
\fR
.in 20
color
.in 15
.in 15
.B "<trim>"
.in 20
\fR
.SH SEE ALSO
animate(1), display(1), composite(1), convert(1), identify(1),
import(1), mogrify(1), montage(1)
.SH COPYRIGHT
\fBCopyright (C) 1999-2004 ImageMagick Studio LLC. Additional copyrights and
licenses apply to this software, see
http://www.imagemagick.org/www/Copyright.html\fP
|