1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820
|
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Magick++ API: Geometry</title>
<link rel="stylesheet" href="magick.css" type="text/css" />
</head>
<body>
<div class="doc-section">
<h1 align="center">Magick::Geometry</h1>
<p>Geometry provides a convenient means to specify a geometry
argument. The object may be initialized from a C string or C++ string
containing a geometry specification. It may also be initialized by
more efficient parameterized constructors.
</p>
<h3><a name="GeometrySpecifications"></a>Geometry
Specifications</h3>
<p>Geometry specifications are in the form
<kbd>"<width>x<height>{+-}<xoffset>{+-}<yoffset>"</kbd>
(where <i>width</i>, <i>height</i>, <i>xoffset</i>, and <i>yoffset</i>
are numbers) for specifying the size and placement location for an
object.
</p>
<p style="margin-bottom: 0in">The <i>width</i> and <i>height</i>
parts of the geometry specification are measured in pixels. The
<i>xoffset</i> and <i>yoffset</i> parts are also measured in pixels
and are used to specify the distance of the placement coordinate from
the left and top and edges of the image, respectively. Both types of
offsets are measured from the indicated edge of the object to the
corresponding edge of the image. The X offset may be specified in the
following ways:
</p>
<table width="90%" border="1" cellpadding="2" cellspacing="3">
<col width="21*" />
<col width="235*" />
<tr>
<td width="8%">
<p>+<i>xoffset</i></p>
</td>
<td width="92%">
<p>The left edge of the object is to be placed <i>xoffset</i>
pixels in from the <em>left edge </em>of the image.</p>
</td>
</tr>
<tr>
<td width="8%">
<p>-<i>xoffset</i></p>
</td>
<td width="92%">
<p>The left edge of the object is to be placed outside the image,
<i>xoffset</i> pixels out from the <em>left edge </em>of the image.</p>
</td>
</tr>
</table>
<p style="margin-bottom: 0in">The Y offset has similar meanings:
</p>
<table width="90%" border="1" cellpadding="2" cellspacing="3">
<col width="27*" />
<col width="229*" />
<tr>
<td width="11%">
<p>+<i>yoffset</i></p>
</td>
<td width="89%">
<p>The top edge of the object is to be <i>yoffset</i> pixels
<em>below</em> the <em>top edge </em>of the image.</p>
</td>
</tr>
<tr>
<td width="11%">
<p>-<i>yoffset</i></p>
</td>
<td width="89%">
<p>The top edge of the object is to be <i>yoffset</i> pixels
<em>above</em> the <em>top edge</em> of the image.</p>
</td>
</tr>
</table>
<p>Offsets must be given as pairs; in other words, in order to
specify either <i>xoffset</i> or <i>yoffset</i> both must be present.
</p>
<h3><a name="ExtendedGeometrySpecifications"></a>ImageMagick
Extensions To Geometry Specifications</h3>
<p style="margin-bottom: 0in">ImageMagick has added a number of
qualifiers to the standard geometry string for use when resizing
images. The form of an extended geometry string is
"<kbd><width>x<height>{+-}<xoffset>{+-}<yoffset>{%}{!}{<}{>}"</kbd>.
Extended geometry strings should <em>only</em> be used <em>when resizing
an image</em>. Using an extended geometry string for other
applications may cause the API call to fail. The available
qualifiers are shown in the following table:
</p>
<p align="center" STYLE="margin-bottom: 0in"><b>ImageMagick Geometry
Qualifiers</b></p>
<table width="90%" border="1" cellpadding="2" cellspacing="3">
<col width="36*" />
<col width="220*" />
<tr>
<td width="14%">
<p align="center"><b>Qualifier</b></p>
</td>
<td width="86%">
<p align="center"><b>Description</b></p>
</td>
</tr>
<tr>
<td width="14%">
<p align="center"><b>%</b></p>
</td>
<td width="86%">
<p>Interpret width and height as a <b>percentage</b> of the
current size.</p>
</td>
</tr>
<tr>
<td width="14%">
<p align="center"><b>!</b></p>
</td>
<td width="86%">
<p>Resize to width and height <b>exactly</b>, loosing original
aspect ratio.</p>
</td>
</tr>
<tr>
<td width="14%">
<p align="center"><b><</b></p>
</td>
<td width="86%">
<p>Resize only if the image is <b>smaller</b> than the geometry
specification.</p>
</td>
</tr>
<tr>
<td width="14%">
<p align="center"><b>></b></p>
</td>
<td width="86%">
<p>Resize only if the image is <b>greater</b> than the geometry
specification.</p>
</td>
</tr>
</table>
<h3><a name="PostscriptPageSize"></a>Postscript Page Size Extension
To Geometry Specifications</h3>
<p>Any geometry string specification supplied to the Geometry
constructor is considered to be a Postscript page size nickname if
the first character is not numeric. The Geometry constructor converts
these page size specifications into the equivalent numeric geometry
string specification (preserving any offset component) prior to
conversion to the internal object format. Postscript page size
specifications are short-hand for the pixel geometry required to fill
a page of that size. Since the 11x17 inch page size used in the US
starts with a digit, it is not supported as a Postscript page size
nickname. Instead, substitute the geometry specification "<kbd>792x1224>"</kbd>
when 11x17 output is desired.
</p>
<p style="margin-bottom: 0in">An example of a Postscript page size
specification is <kbd>"letter+43+43>"</kbd>.
</p>
<p align="center" style="margin-bottom: 0in"><b>Postscript Page Size
Nicknames</b></p>
<table width="70%" border="1" cellpadding="2" cellspacing="3">
<col width="105*" />
<col width="151*" />
<tr>
<td width="41%">
<p align="center"><b>Postscript Page Size Nickname</b></p>
</td>
<td width="59%">
<p align="center"><b>Equivalent Extended Geometry Specification</b></p>
</td>
</tr>
<tr>
<td width="41%">
<p align="center"><font size="2">Ledger</font></p>
</td>
<td width="59%">
<p align="center"><font size="2">1224x792></font></p>
</td>
</tr>
<tr>
<td width="41%">
<p align="center"><font size="2">Legal</font></p>
</td>
<td width="59%">
<p align="center"><font size="2">612x1008></font></p>
</td>
</tr>
<tr>
<td width="41%">
<p align="center"><font size="2">Letter</font></p>
</td>
<td width="59%">
<p align="center"><font size="2">612x792></font></p>
</td>
</tr>
<tr>
<td width="41%">
<p align="center"><font size="2">LetterSmall</font></p>
</td>
<td width="59%">
<p align="center"><font size="2">612x792></font></p>
</td>
</tr>
<tr>
<td width="41%">
<p align="center"><font size="2">ArchE</font></p>
</td>
<td width="59%">
<p align="center"><font size="2">2592x3456></font></p>
</td>
</tr>
<tr>
<td width="41%">
<p align="center"><font size="2">ArchD</font></p>
</td>
<td width="59%">
<p align="center"><font size="2">1728x2592></font></p>
</td>
</tr>
<tr>
<td width="41%">
<p align="center"><font size="2">ArchC</font></p>
</td>
<td width="59%">
<p align="center"><font size="2">1296x1728></font></p>
</td>
</tr>
<tr>
<td width="41%">
<p align="center"><font size="2">ArchB</font></p>
</td>
<td width="59%">
<p align="center"><font size="2">864x1296></font></p>
</td>
</tr>
<tr>
<td width="41%">
<p align="center"><font size="2">ArchA</font></p>
</td>
<td width="59%">
<p align="center"><font size="2">648x864></font></p>
</td>
</tr>
<tr>
<td width="41%">
<p align="center"><font size="2">A0</font></p>
</td>
<td width="59%">
<p align="center"><font size="2">2380x3368></font></p>
</td>
</tr>
<tr>
<td width="41%">
<p align="center"><font size="2">A1</font></p>
</td>
<td width="59%">
<p align="center"><font size="2">1684x2380></font></p>
</td>
</tr>
<tr>
<td width="41%">
<p align="center"><font size="2">A2</font></p>
</td>
<td width="59%">
<p align="center"><font size="2">1190x1684></font></p>
</td>
</tr>
<tr>
<td width="41%">
<p align="center"><font size="2">A3</font></p>
</td>
<td width="59%">
<p align="center"><font size="2">842x1190></font></p>
</td>
</tr>
<tr>
<td width="41%">
<p align="center"><font size="2">A4</font></p>
</td>
<td width="59%">
<p align="center"><font size="2">595x842></font></p>
</td>
</tr>
<tr>
<td width="41%">
<p align="center"><font size="2">A4Small</font></p>
</td>
<td width="59%">
<p align="center"><font size="2">595x842></font></p>
</td>
</tr>
<tr>
<td width="41%">
<p align="center"><font size="2">A5</font></p>
</td>
<td width="59%">
<p align="center"><font size="2">421x595></font></p>
</td>
</tr>
<tr>
<td width="41%">
<p align="center"><font size="2">A6</font></p>
</td>
<td width="59%">
<p align="center"><font size="2">297x421></font></p>
</td>
</tr>
<tr>
<td width="41%">
<p align="center"><font size="2">A7</font></p>
</td>
<td width="59%">
<p align="center"><font size="2">210x297></font></p>
</td>
</tr>
<tr>
<td width="41%">
<p align="center"><font size="2">A8</font></p>
</td>
<td width="59%">
<p align="center"><font size="2">148x210></font></p>
</td>
</tr>
<tr>
<td width="41%">
<p align="center"><font size="2">A9</font></p>
</td>
<td width="59%">
<p align="center"><font size="2">105x148></font></p>
</td>
</tr>
<tr>
<td width="41%">
<p align="center"><font size="2">A10</font></p>
</td>
<td width="59%">
<p align="center"><font size="2">74x105></font></p>
</td>
</tr>
<tr>
<td width="41%">
<p align="center"><font size="2">B0</font></p>
</td>
<td width="59%">
<p align="center"><font size="2">2836x4008></font></p>
</td>
</tr>
<tr>
<td width="41%">
<p align="center"><font size="2">B1</font></p>
</td>
<td width="59%">
<p align="center"><font size="2">2004x2836></font></p>
</td>
</tr>
<tr>
<td width="41%">
<p align="center"><font size="2">B2</font></p>
</td>
<td width="59%">
<p align="center"><font size="2">1418x2004></font></p>
</td>
</tr>
<tr>
<td width="41%">
<p align="center"><font size="2">B3</font></p>
</td>
<td width="59%">
<p align="center"><font size="2">1002x1418></font></p>
</td>
</tr>
<tr>
<td width="41%">
<p align="center"><font size="2">B4</font></p>
</td>
<td width="59%">
<p align="center"><font size="2">709x1002></font></p>
</td>
</tr>
<tr>
<td width="41%">
<p align="center"><font size="2">B5</font></p>
</td>
<td width="59%">
<p align="center"><font size="2">501x709></font></p>
</td>
</tr>
<tr>
<td width="41%">
<p align="center"><font size="2">C0</font></p>
</td>
<td width="59%">
<p align="center"><font size="2">2600x3677></font></p>
</td>
</tr>
<tr>
<td width="41%">
<p align="center"><font size="2">C1</font></p>
</td>
<td width="59%">
<p align="center"><font size="2">1837x2600></font></p>
</td>
</tr>
<tr>
<td width="41%">
<p align="center"><font size="2">C2</font></p>
</td>
<td width="59%">
<p align="center"><font size="2">1298x1837></font></p>
</td>
</tr>
<tr>
<td width="41%">
<p align="center"><font size="2">C3</font></p>
</td>
<td width="59%">
<p align="center"><font size="2">918x1298></font></p>
</td>
</tr>
<tr>
<td width="41%">
<p align="center"><font size="2">C4</font></p>
</td>
<td width="59%">
<p align="center"><font size="2">649x918></font></p>
</td>
</tr>
<tr>
<td width="41%">
<p align="center"><font size="2">C5</font></p>
</td>
<td width="59%">
<p align="center"><font size="2">459x649></font></p>
</td>
</tr>
<tr>
<td width="41%">
<p align="center"><font size="2">C6</font></p>
</td>
<td width="59%">
<p align="center"><font size="2">323x459></font></p>
</td>
</tr>
<tr>
<td width="41%">
<p align="center"><font size="2">Flsa</font></p>
</td>
<td width="59%">
<p align="center"><font size="2">612x936></font></p>
</td>
</tr>
<tr>
<td width="41%">
<p align="center"><font size="2">Flse</font></p>
</td>
<td width="59%">
<p align="center"><font size="2">612x936></font></p>
</td>
</tr>
<tr>
<td width="41%">
<p align="center"><font size="2">HalfLetter</font></p>
</td>
<td width="59%">
<p align="center"><font size="2">396x612></font></p>
</td>
</tr>
</table>
<H3 align="center">Geometry Methods</H3>
<p style="margin-bottom: 0in">Geometry provides methods to initialize
its value from strings, from a set of parameters, or via attributes.
The methods available for use in Geometry are shown in the following
table:
</p>
<p align="center" style="margin-bottom: 0in"><b>Geometry Methods</b></p>
<table width="100%" border="1" cellpadding="2" cellspacing="3">
<col width="25*" />
<col width="26*" />
<col width="111*" />
<col width="94*" />
<tr>
<td width="10%">
<p align="center"><b>Method</b></p>
</td>
<td width="10%">
<p align="center"><b>Return Type</b></p>
</td>
<td width="44%">
<p align="center"><b>Signature(s)</b></p>
</td>
<td width="37%">
<p align="center"><b>Description</b></p>
</td>
</tr>
<tr>
<td rowspan="3" width="10%">
<p>Geometry</p>
</td>
<td rowspan="3" width="10%" bgcolor="#666666">
<p> </p>
</td>
<td width="44%">
<p>size_t width_, size_t height_, ssize_t xOff_ =
0, ssize_t yOff_ = 0, bool xNegative_ = false, bool
yNegative_ = false</p>
</td>
<td width="37%">
<p>Construct geometry via explicit parameters.</p>
</td>
</tr>
<tr>
<td width="44%">
<p>const string geometry_</p>
</td>
<td width="37%">
<p>Construct geometry from C++ string</p>
</td>
</tr>
<tr>
<td width="44%">
<p>const char * geometry_</p>
</td>
<td width="37%">
<p>Construct geometry from C string</p>
</td>
</tr>
<tr>
<td rowspan="2" width="10%">
<p>width</p>
</td>
<td width="10%">
<p>void</p>
</td>
<td width="44%">
<p>size_t width_</p>
</td>
<td rowspan="2" width="37%">
<p>Width</p>
</td>
</tr>
<tr>
<td width="10%">
<p>size_t</p>
</td>
<td width="44%">
<p>void</p>
</td>
</tr>
<tr>
<td rowspan="2" width="10%">
<p>height</p>
</td>
<td width="10%">
<p>void</p>
</td>
<td width="44%">
<p>size_t height_</p>
</td>
<td rowspan="2" width="37%">
<p>Height</p>
</td>
</tr>
<tr>
<td width="10%">
<p>size_t</p>
</td>
<td width="44%">
<p>void</p>
</td>
</tr>
<tr>
<td rowspan="2" width="10%">
<p>xOff</p>
</td>
<td width="10%">
<p>void</p>
</td>
<td width="44%">
<p>ssize_t xOff_</p>
</td>
<td rowspan="2" width="37%">
<p>X offset from origin</p>
</td>
</tr>
<tr>
<td width="10%">
<p>ssize_t</p>
</td>
<td width="44%">
<p>void</p>
</td>
</tr>
<tr>
<td rowspan="2" width="10%">
<p>yOff</p>
</td>
<td width="10%">
<p>void</p>
</td>
<td width="44%">
<p>ssize_t yOff_</p>
</td>
<td rowspan="2" width="37%">
<p>Y offset from origin</p>
</td>
</tr>
<tr>
<td width="10%">
<p>ssize_t</p>
</td>
<td width="44%">
<p>void</p>
</td>
</tr>
<tr>
<td rowspan="2" width="10%">
<p>xNegative</p>
</td>
<td width="10%">
<p>void</p>
</td>
<td width="44%">
<p>bool xNegative_</p>
</td>
<td rowspan="2" width="37%">
<p>Sign of X offset negative? (X origin at right)</p>
</td>
</tr>
<tr>
<td width="10%">
<p>bool</p>
</td>
<td width="44%">
<p>void</p>
</td>
</tr>
<tr>
<td rowspan="2" width="10%">
<p>yNegative</p>
</td>
<td width="10%">
<p>void</p>
</td>
<td width="44%">
<p>bool yNegative_</p>
</td>
<td rowspan="2" width="37%">
<p>Sign of Y offset negative? (Y origin at bottom)</p>
</td>
</tr>
<tr>
<td width="10%">
<p>bool</p>
</td>
<td width="44%">
<p>void</p>
</td>
</tr>
<tr>
<td rowspan="2" width="10%">
<p>percent</p>
</td>
<td width="10%">
<p>void</p>
</td>
<td width="44%">
<p>bool percent_</p>
</td>
<td rowspan="2" width="37%">
<p>Width and height are expressed as percentages</p>
</td>
</tr>
<tr>
<td width="10%">
<p>bool</p>
</td>
<td width="44%">
<p>void</p>
</td>
</tr>
<tr>
<td rowspan="2" width="10%">
<p>aspect</p>
</td>
<td width="10%">
<p>void</p>
</td>
<td width="44%">
<p>bool aspect_</p>
</td>
<td rowspan="2" width="37%">
<p>Resize without preserving aspect ratio (!)</p>
</td>
</tr>
<tr>
<td width="10%">
<p>bool</p>
</td>
<td width="44%">
<p>void</p>
</td>
</tr>
<tr>
<td rowspan="2" width="10%">
<p>greater</p>
</td>
<td width="10%">
<p>void</p>
</td>
<td width="44%">
<p>bool greater_</p>
</td>
<td rowspan="2" width="37%">
<p>Resize if image is greater than size (>)</p>
</td>
</tr>
<tr>
<td width="10%">
<p>bool</p>
</td>
<td width="44%">
<p>void</p>
</td>
</tr>
<tr>
<td rowspan="2" width="10%">
<p>less</p>
</td>
<td width="10%">
<p>void</p>
</td>
<td width="44%">
<p>bool less_</p>
</td>
<td rowspan="2" width="37%">
<p>Resize if image is less than size (<)</p>
</td>
</tr>
<tr>
<td width="10%">
<p>bool</p>
</td>
<td width="44%">
<p>void</p>
</td>
</tr>
<tr>
<td rowspan="2" width="10%">
<p>isValid</p>
</td>
<td width="10%">
<p>void</p>
</td>
<td width="44%">
<p>bool isValid_</p>
</td>
<td rowspan="2" width="37%">
<p>Does object contain a valid geometry? May be set to <i>false</i>
in order to invalidate an existing geometry object.</p>
</td>
</tr>
<tr>
<td width="10%">
<p>bool</p>
</td>
<td width="44%">
<p>void</p>
</td>
</tr>
<tr>
<td width="10%">
<p>operator =</p>
</td>
<td width="10%">
<p>const Geometry&</p>
</td>
<td width="44%">
<p>const string geometry_</p>
</td>
<td width="37%">
<p>Set geometry via C++ string</p>
</td>
</tr>
<tr>
<td width="10%">
<p>operator =</p>
</td>
<td width="10%">
<p>const Geometry&</p>
</td>
<td width="44%">
<p>const char * geometry_</p>
</td>
<td width="37%">
<p>Set geometry via C string</p>
</td>
</tr>
<tr>
<td width="10%">
<p>operator string</p>
</td>
<td width="10%">
<p>string</p>
</td>
<td width="44%">
<p>Geometry&</p>
</td>
<td width="37%">
<p>Obtain C++ string representation of geometry</p>
</td>
</tr>
</table>
<p>In addition, we support these yet to be documented geometry flags: the fill area flag ('^') and the pixel area count limit flag ('@').</p>
<p><br /><br />
</p>
</div>
</body>
</html>
|