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 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187
|
From: =?utf-8?q?Bastien_Roucari=C3=A8s?= <rouca@debian.org>
Date: Sat, 29 Mar 2025 18:20:14 +0000
Subject: Fix remaining html error
forwarded: not-needed
---
www/Magick++/Montage.html | 8 ++++----
www/advanced-linux-installation.html | 4 ----
www/advanced-unix-installation.html | 8 --------
www/advanced-windows-installation.html | 8 --------
www/animate.html | 8 --------
www/api/channel.html | 4 ++--
www/api/magick-image.html | 4 ++--
www/architecture.html | 30 +++++++++++++-----------------
www/changelog.html | 7 +------
www/cipher.html | 4 ----
www/clahe.html | 5 -----
www/color-thresholding.html | 2 +-
www/color.html | 4 ----
www/command-line-options.html | 8 ++++----
www/command-line-processing.html | 1 +
www/command-line-tools.html | 2 +-
www/compare.html | 5 -----
www/compose.html | 5 +----
www/contact.html | 4 ----
www/convert.html | 4 ----
www/convex-hull.html | 6 +-----
www/defines.html | 6 +++---
www/distribute-pixel-cache.html | 4 ----
www/escape.html | 4 ----
www/exception.html | 4 ----
www/formats.html | 2 +-
www/fx.html | 8 ++------
www/gradient.html | 4 ----
www/high-dynamic-range.html | 4 ----
www/history.html | 4 ----
www/identify.html | 4 ----
www/install-source.html | 12 ++++--------
www/links.html | 4 ----
www/magick-cache.html | 8 ++------
www/magick-script.html | 8 ++------
www/magick-vector-graphics.html | 4 ----
www/magick-wand.html | 8 ++------
www/miff.html | 4 ----
www/montage.html | 2 +-
www/multispectral-imagery.html | 6 +++---
www/news.html | 5 +++--
www/opencl.html | 4 ----
www/privacy-policy.html | 4 ----
www/quantize.html | 4 ----
www/search.html | 4 ----
www/sitemap.html | 4 ----
www/support.html | 10 +++-------
www/vpat.html | 4 ----
www/webp.html | 6 +-----
49 files changed, 58 insertions(+), 218 deletions(-)
diff --git a/www/Magick++/Montage.html b/www/Magick++/Montage.html
index dc26643..56ea42f 100644
--- a/www/Magick++/Montage.html
+++ b/www/Magick++/Montage.html
@@ -71,7 +71,7 @@
<td>
<p><font size="2">void</font></p></td>
<td>
-<p><font size="2">const std::string& fileName_</font></p></td>
+<p><font size="2">const std::string& fileName_</font></p></td>
<td rowspan="2">
<p><font size="2">Specifies the image filename to be used for the generated montage images. To handle the case were multiple montage images are generated, a <span lang="en-US">printf</span>-style format may be embedded within the filename. For example, a filename specification of image%02d.miff names the montage images as image00.miff, image01.miff, etc.</font></p></td></tr>
<tr>
@@ -99,7 +99,7 @@
<td>
<p><font size="2">void</font></p></td>
<td>
-<p><font size="2">const std::string& font_</font></p></td>
+<p><font size="2">const std::string& font_</font></p></td>
<td rowspan="2">
<p><font size="2">Specifies the thumbnail label font.</font></p></td></tr>
<tr>
@@ -141,7 +141,7 @@
<td>
<p><font size="2">void</font></p></td>
<td>
-<p><font size="2">const std::string& label_</font></p></td>
+<p><font size="2">const std::string& label_</font></p></td>
<td rowspan="2">
<p><font size="2">Specifies the format used for the image label. Special <a href="https://imagemagick.org/Magick++/FormatCharacters.html">format characters</a> may be embedded in the format string to include information about the image.</font></p></td></tr>
<tr>
@@ -211,7 +211,7 @@
<td>
<p><font size="2">void</font></p></td>
<td>
-<p><font size="2">const std::string& texture_</font></p></td>
+<p><font size="2">const std::string& texture_</font></p></td>
<td rowspan="2">
<p><font size="2">Specifies a texture image to use as montage background. The built-in textures "<tt>granite:</tt>" and "<tt>plasma:</tt>" are available. A texture is the same as a background image.</font></p></td></tr>
<tr>
diff --git a/www/advanced-linux-installation.html b/www/advanced-linux-installation.html
index 0e15753..d94b0d4 100644
--- a/www/advanced-linux-installation.html
+++ b/www/advanced-linux-installation.html
@@ -117,10 +117,6 @@
</li>
</ul>
- <form class="d-flex form-inline" action="search.html">
- <input class="form-control me-2" type="text" name="q" placeholder="Search" aria-label="Search">
- <button class="btn btn-outline-success" type="submit" name="sa">Search</button>
- </form>
</div>
</div>
</nav>
diff --git a/www/advanced-unix-installation.html b/www/advanced-unix-installation.html
index e9c1098..ebcd209 100644
--- a/www/advanced-unix-installation.html
+++ b/www/advanced-unix-installation.html
@@ -66,15 +66,7 @@
</li>
</ul>
- <form class="d-flex form-inline" action="search.html">
- <input class="form-control me-2" type="text" name="q" placeholder="Search" aria-label="Search">
- <button class="btn btn-outline-success" type="submit" name="sa">Search</button>
- </form>
</div>
- <form class="form-inline my-2 my-lg-0" action="https://legacy.imagemagick.org/script/search.php">
- <input class="form-control mr-sm-2" type="text" name="q" placeholder="Search" aria-label="Search" />
- <button class="btn btn-outline-success my-2 my-sm-0" type="submit" name="sa">Search</button>
- </form>
</div>
</nav>
diff --git a/www/advanced-windows-installation.html b/www/advanced-windows-installation.html
index 6e73dd3..8e67d2b 100644
--- a/www/advanced-windows-installation.html
+++ b/www/advanced-windows-installation.html
@@ -117,15 +117,7 @@
</li>
</ul>
- <form class="d-flex form-inline" action="search.html">
- <input class="form-control me-2" type="text" name="q" placeholder="Search" aria-label="Search">
- <button class="btn btn-outline-success" type="submit" name="sa">Search</button>
- </form>
</div>
- <form class="form-inline my-2 my-lg-0" action="https://legacy.imagemagick.org/script/search.php">
- <input class="form-control mr-sm-2" type="text" name="q" placeholder="Search" aria-label="Search" />
- <button class="btn btn-outline-success my-2 my-sm-0" type="submit" name="sa">Search</button>
- </form>
</div>
</nav>
diff --git a/www/animate.html b/www/animate.html
index 3c948d8..4f83caf 100644
--- a/www/animate.html
+++ b/www/animate.html
@@ -117,15 +117,7 @@
</li>
</ul>
- <form class="d-flex form-inline" action="search.html">
- <input class="form-control me-2" type="text" name="q" placeholder="Search" aria-label="Search">
- <button class="btn btn-outline-success" type="submit" name="sa">Search</button>
- </form>
</div>
- <form class="form-inline my-2 my-lg-0" action="https://legacy.imagemagick.org/script/search.php">
- <input class="form-control mr-sm-2" type="text" name="q" placeholder="Search" aria-label="Search" />
- <button class="btn btn-outline-success my-2 my-sm-0" type="submit" name="sa">Search</button>
- </form>
</div>
</nav>
diff --git a/www/api/channel.html b/www/api/channel.html
index 6af98de..2c2a2ba 100644
--- a/www/api/channel.html
+++ b/www/api/channel.html
@@ -164,7 +164,7 @@
<pre class="bg-light text-dark mx-4"><samp> -channel-fx "red; green; blue"
</samp></pre>
-<p>A channel without an operation symbol implies separate (i.e, semicolon). </dd>
+<p>A channel without an operation symbol implies separate (i.e, semicolon). </p>
<dd> The format of the ChannelFxImage method is: </dd>
@@ -172,7 +172,7 @@
ExceptionInfo *exception)
</samp></pre>
-<p>A description of each parameter follows: </dd>
+<p>A description of each parameter follows: </p>
<dd>
</dd>
diff --git a/www/api/magick-image.html b/www/api/magick-image.html
index 2ba7c28..e509016 100644
--- a/www/api/magick-image.html
+++ b/www/api/magick-image.html
@@ -1084,12 +1084,12 @@
<pre class="bg-light text-dark mx-4"><samp> -channel-fx "red; green; blue"
</samp></pre>
-<p>The format of the MagickChannelFxImage method is: </dd>
+<p>The format of the MagickChannelFxImage method is: </p>
<pre class="bg-light text-dark mx-4"><samp>MagickWand *MagickChannelFxImage(MagickWand *wand,const char *expression)
</samp></pre>
-<p>A description of each parameter follows: </dd>
+<p>A description of each parameter follows: </p>
<dd>
</dd>
diff --git a/www/architecture.html b/www/architecture.html
index 202b47d..b49e182 100644
--- a/www/architecture.html
+++ b/www/architecture.html
@@ -117,10 +117,6 @@
</li>
</ul>
- <form class="d-flex form-inline" action="search.html">
- <input class="form-control me-2" type="text" name="q" placeholder="Search" aria-label="Search">
- <button class="btn btn-outline-success" type="submit" name="sa">Search</button>
- </form>
</div>
</div>
</nav>
@@ -999,13 +995,13 @@ __kernel void Convolve(const __global CLPixelType *source,__constant float *filt
#include "filter/image-private.h"
#include "filter/monitor-private.h"
#include "filter/quantum-private.h"
-
+
/*
Forward declarations.
*/
static MagickBooleanType
WriteMGKImage(const ImageInfo *,Image *,ExceptionInfo *);
-
+
/*
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
@@ -1040,7 +1036,7 @@ static MagickBooleanType IsMGK(const unsigned char *magick,const size_t length)
return(MagickTrue);
return(MagickFalse);
}
-
+
/*
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
@@ -1125,7 +1121,7 @@ static Image *ReadMGKImage(const ImageInfo *image_info,ExceptionInfo *exception)
if (IsMGK(buffer,7) == MagickFalse)
ThrowReaderException(CorruptImageError,"ImproperImageHeader");
(void) ReadBlobString(image,buffer);
- count=(ssize_t) sscanf(buffer,"%lu %lu\n",&columns,&rows);
+ count=(ssize_t) sscanf(buffer,"%lu %lu\n",&columns,&rows);
if (count <= 0)
ThrowReaderException(CorruptImageError,"ImproperImageHeader");
do
@@ -1136,7 +1132,7 @@ static Image *ReadMGKImage(const ImageInfo *image_info,ExceptionInfo *exception)
image->columns=columns;
image->rows=rows;
image->depth=8;
- if ((image_info->ping != MagickFalse) && (image_info->number_scenes != 0))
+ if ((image_info->ping != MagickFalse) && (image_info->number_scenes != 0))
if (image->scene >= (image_info->scene+image_info->number_scenes-1))
break;
/*
@@ -1167,7 +1163,7 @@ static Image *ReadMGKImage(const ImageInfo *image_info,ExceptionInfo *exception)
if (SyncAuthenticPixels(image,exception) == MagickFalse)
break;
if (image->previous == (Image *) NULL)
- if ((image->progress_monitor != (MagickProgressMonitor) NULL) &&
+ if ((image->progress_monitor != (MagickProgressMonitor) NULL) &&
(QuantumTick(y,image->rows) != MagickFalse))
{
status=image->progress_monitor(LoadImageTag,y,image->rows,
@@ -1191,7 +1187,7 @@ static Image *ReadMGKImage(const ImageInfo *image_info,ExceptionInfo *exception)
break;
*buffer='\0';
(void) ReadBlobString(image,buffer);
- count=(ssize_t) sscanf(buffer,"%lu %lu\n",&columns,&rows);
+ count=(ssize_t) sscanf(buffer,"%lu %lu\n",&columns,&rows);
if (count > 0)
{
/*
@@ -1216,7 +1212,7 @@ static Image *ReadMGKImage(const ImageInfo *image_info,ExceptionInfo *exception)
(void) CloseBlob(image);
return(GetFirstImageInList(image));
}
-
+
/*
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
@@ -1252,7 +1248,7 @@ ModuleExport unsigned long RegisterMGKImage(void)
(void) RegisterMagickInfo(entry);
return(MagickImageCoderSignature);
}
-
+
/*
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
@@ -1276,7 +1272,7 @@ ModuleExport void UnregisterMGKImage(void)
{
(void) UnregisterMagickInfo("MGK");
}
-
+
/*
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
@@ -1378,7 +1374,7 @@ static MagickBooleanType WriteMGKImage(const ImageInfo *image_info,Image *image,
}
(void) WriteBlob(image,(size_t) (q-pixels),pixels);
if (image->previous == (Image *) NULL)
- if ((image->progress_monitor != (MagickProgressMonitor) NULL) &&
+ if ((image->progress_monitor != (MagickProgressMonitor) NULL) &&
(QuantumTick(y,image->rows) != MagickFalse))
{
status=image->progress_monitor(SaveImageTag,y,image->rows,
@@ -1425,7 +1421,7 @@ display logo.mgk
#include <math.h>
#include "MagickCore/studio.h"
#include "MagickCore/MagickCore.h"
-
+
/*
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
@@ -1554,7 +1550,7 @@ ModuleExport size_t analyzeImage(Image **images,const int argc,const char **argv
s;
ConvertRGBToHSL(GetPixelRed(image,p),GetPixelGreen(image,p),
- GetPixelBlue(image,p),&h,&s,&b);
+ GetPixelBlue(image,p),&h,&s,&b);
b*=QuantumRange;
for (i=1; i <= 4; i++)
local_brightness.sum[i]+=pow(b,(double) i);
diff --git a/www/changelog.html b/www/changelog.html
index 85d73da..cb8bda3 100644
--- a/www/changelog.html
+++ b/www/changelog.html
@@ -66,10 +66,6 @@
</li>
</ul>
- <form class="d-flex form-inline" action="search.html">
- <input class="form-control me-2" type="text" name="q" placeholder="Search" aria-label="Search">
- <button class="btn btn-outline-success" type="submit" name="sa">Search</button>
- </form>
</div>
</div>
<form class="form-inline my-2 my-lg-0" action="https://legacy.imagemagick.org/script/search.php">
@@ -961,7 +957,6 @@
<dt>2019-04-10 7.0.8-40 Cristy <quetzlzacatenango@image...></dt>
<li> Fixed a number of issues (reference https://imagemagick.org/discourse-server///////////////////viewforum.html?f=3).</li>
<li> Fixed a number of issues (reference https://github.com/ImageMagick/ImageMagick/issues).</li>
-</li>
<dt>2019-04-07 7.0.8-39 Cristy <quetzlzacatenango@image...></dt>
<li> Release ImageMagick version 7.0.8-39, GIT revision 15489:6120f8bc1:20190406</li>
<dt>2019-04-06 7.0.8-39 Cristy <quetzlzacatenango@image...></dt>
@@ -1443,7 +1438,7 @@
<li> Release ImageMagick version 7.0.5-6, GIT revision 20078:7ce2d38:20170519.</li>
<dt>2017-05-15 7.0.5-7 Cristy <quetzlzacatenango@image...></dt>
<li> Support various image operators for the compare utility (reference https://imagemagick.org/discourse-server///////////////////viewtopic.html?f=2&t=31938).</li>
- 2017-05-12 7.0.5-6 Cristy <quetzlzacatenango@image...></li>
+<dt>2017-05-12 7.0.5-6 Cristy <quetzlzacatenango@image...></dt>
<li> Release ImageMagick version 7.0.5-6, GIT revision 20039:9371904:20170512.</li>
<dt>2017-05-10 7.0.5-6 John Cupitt <jcupitt@gmail.com></dt>
<li> Revise DICOM window and rescale handling (reference https://github.com/ImageMagick/ImageMagick/pull/484)</li>
diff --git a/www/cipher.html b/www/cipher.html
index d5b4d71..c0a648d 100644
--- a/www/cipher.html
+++ b/www/cipher.html
@@ -117,10 +117,6 @@
</li>
</ul>
- <form class="d-flex form-inline" action="search.html">
- <input class="form-control me-2" type="text" name="q" placeholder="Search" aria-label="Search">
- <button class="btn btn-outline-success" type="submit" name="sa">Search</button>
- </form>
</div>
</div>
</nav>
diff --git a/www/clahe.html b/www/clahe.html
index 4efb7ca..5d8f4cb 100644
--- a/www/clahe.html
+++ b/www/clahe.html
@@ -117,10 +117,6 @@
</li>
</ul>
- <form class="d-flex form-inline" action="search.html">
- <input class="form-control me-2" type="text" name="q" placeholder="Search" aria-label="Search">
- <button class="btn btn-outline-success" type="submit" name="sa">Search</button>
- </form>
</div>
</div>
</nav>
@@ -141,7 +137,6 @@
</ul>
<p> The image is divided into tiles of <var>width</var> and <var>height</var> pixels. Append <samp>%</samp> to define the width and height as percentages of the image's dimensions. The tile size should be larger than the size of features to be preserved and respects the aspect ratio of the image. Add <samp>!</samp> to force an exact tile width and height. <var>number-bins</var> is the number of histogram bins per tile (min 2, max 65536). The number of histogram bins should be smaller than the number of pixels in a single tile. <var>clip-limit</var> is the contrast limit for localized changes in contrast. A clip-limit of 2 to 3 is a good starting place (e.g. -clahe 50x50%+128+3). Very large values will let the histogram equalization do whatever it wants to do, that is result in maximal local contrast. The value 1 will result in the original image. Note, if the number of bins and the clip-limit are omitted, they default to 128 and no clipping respectively.</p>
<p>To visualize the benefits of CLAHE, we have a low contrast image of mountains:</p>
-<p>
<ul>
<a href="../images/mountains.jpg"><img src="../images/mountains.jpg" width="500" height="333" alt="label" /></a>
</ul>
diff --git a/www/color-thresholding.html b/www/color-thresholding.html
index 06bbd01..6de5f5f 100644
--- a/www/color-thresholding.html
+++ b/www/color-thresholding.html
@@ -156,7 +156,7 @@
<p>Now, pick two RGB colors: <samp>sRGB(159,150,0)</samp> and <samp>sRGB(205,100,45):</samp></p>
-<pre class="code">magick monet.jpg -color-threshold 'sRGB(159,150,0)-sRGB(205,100,45)' monet.gif</samp></ul>
+<pre class="code">magick monet.jpg -color-threshold 'sRGB(159,150,0)-sRGB(205,100,45)' monet.gif</pre>
<ul><img class="img-fluid img-thumbnail" src="../images/color-thresholding-rgb.gif" alt="[Color Thresholding]" width="265" height="333" name="color-thresholding" /></ul>
diff --git a/www/color.html b/www/color.html
index 3f99d6d..ffd6d59 100644
--- a/www/color.html
+++ b/www/color.html
@@ -117,10 +117,6 @@
</li>
</ul>
- <form class="d-flex form-inline" action="search.html">
- <input class="form-control me-2" type="text" name="q" placeholder="Search" aria-label="Search">
- <button class="btn btn-outline-success" type="submit" name="sa">Search</button>
- </form>
</div>
</div>
</nav>
diff --git a/www/command-line-options.html b/www/command-line-options.html
index 6b209d5..7ef2919 100644
--- a/www/command-line-options.html
+++ b/www/command-line-options.html
@@ -1368,14 +1368,14 @@ abbreviated as a concatenation of the letters '<samp>R</samp>', '<samp>G</samp>'
'<samp>B</samp>', '<samp>A</samp>', '<samp>O</samp>', '<samp>C</samp>',
'<samp>M</samp>', '<samp>Y</samp>', '<samp>K</samp>'.</p>
-<p>The numerals 0 to 31 may also be used to specify channels, where 0 to 5 are: <br />
+<p>The numerals 0 to 31 may also be used to specify channels, where 0 to 5 are: </p>
<ul>
'<samp>0</samp>' equals <samp>Red</samp> or <samp>Cyan</samp> <br />
'<samp>1</samp>' equals <samp>Green</samp> or <samp>Magenta</samp> <br />
'<samp>2</samp>' equals <samp>Blue</samp> or <samp>Yellow</samp> <br />
'<samp>3</samp>' equals <samp>Black</samp> <br />
'<samp>4</samp>' equals <samp>Alpha</samp> or <samp>Opacity</samp> <br />
-'<samp>5</samp>' equals <samp>Index</samp></p>
+'<samp>5</samp>' equals <samp>Index</samp><br />
</ul>
<p>For example, to only select the <samp>Red</samp> and <samp>Blue</samp> channels
@@ -3597,7 +3597,7 @@ image is centered on an 800x600 black canvas: </p>
-gravity center -extent 800x600 -quality 92 output.jpg
</samp></pre>
-<p>The command can also be used with a ratio. If the image is not already at that ratio, it will be cropped to fit it. The <a href="#gravity">-gravity</a> setting has the expected effects.
+<p>The command can also be used with a ratio. If the image is not already at that ratio, it will be cropped to fit it. The <a href="#gravity">-gravity</a> setting has the expected effects.</p>
<p>The following command crops a JPEG image so that it has a 4:3 ratio:</p>
@@ -7880,7 +7880,7 @@ radius that will provide meaningful results for the Gaussian distribution.
<p class="magick-description">Soften the edges of the image in vignette style.</p>
-<p>The vignette effect rolloff is controlled by radiusxsigma. For nominal rolloff, this would be set to 0xsigma. A value of 0x0 will produce a circle/ellipse with no rolloff. The arguments x and y control the size of the circle. Larger values decrease the radii and smaller values increase the radii. Values of +0+0 will generate a circle/ellipse the same size as the image. The default values for x and y are 10% of the corresponding image dimension. Thus, the radii will be decreased by 10%, i.e., the diameters of the circle/ellipse will be 80% of the corresponding image dimension. Note, the percent symbol in a geometry affects <var>x</var> and <var>y</var>, whereas <var>radius</var> and <var>sigma</var> are absolute (e.g., <samp>-vignette "0x2+10%+10%").</p>
+<p>The vignette effect rolloff is controlled by radiusxsigma. For nominal rolloff, this would be set to 0xsigma. A value of 0x0 will produce a circle/ellipse with no rolloff. The arguments x and y control the size of the circle. Larger values decrease the radii and smaller values increase the radii. Values of +0+0 will generate a circle/ellipse the same size as the image. The default values for x and y are 10% of the corresponding image dimension. Thus, the radii will be decreased by 10%, i.e., the diameters of the circle/ellipse will be 80% of the corresponding image dimension. Note, the percent symbol in a geometry affects <var>x</var> and <var>y</var>, whereas <var>radius</var> and <var>sigma</var> are absolute (e.g., <samp>-vignette "0x2+10%+10%")</samp>.</p>
<div style="margin: auto;">
<h2><a class="anchor" id="virtual-pixel"></a>-virtual-pixel <var>method</var></h2>
diff --git a/www/command-line-processing.html b/www/command-line-processing.html
index d0d2564..894bf054 100644
--- a/www/command-line-processing.html
+++ b/www/command-line-processing.html
@@ -601,6 +601,7 @@ setting for more specifics.</p>
<tr>
<td><var>area</var>@</td>
<td>Resize image to have specified area in pixels. Aspect ratio is preserved.</td>
+ </tr>
<tr>
<td><var>x</var>:<var>y</var></td>
<td>Here x and y denotes an aspect ratio (e.g. 3:2 = 1.5).</td>
diff --git a/www/command-line-tools.html b/www/command-line-tools.html
index 0a7d569..3ed8894 100644
--- a/www/command-line-tools.html
+++ b/www/command-line-tools.html
@@ -158,7 +158,7 @@
<dt class="col-md-4"><a class="anchor" id="stream"></a><a href="stream.html">magick stream</a></dt><dd class="col-md-8">a lightweight tool to stream one or more pixel components of the image or portion of the image to your choice of storage formats. It writes the pixel components as they are read from the input image a row at a time making <samp>stream</samp> desirable when working with large images or when you require raw pixel components.</dd>
</dl>
<p>Your installation may have direct ImageMagick version 6 compatibility links. If so, you can access the tools directly by referring to them by name. For example,
-<pre class="p-3 mb-2 text-body-secondary bg-body-tertiary cli"><samp>magick identify -verbose myImage.png</samp></pre>
+<pre class="p-3 mb-2 text-body-secondary bg-body-tertiary cli"><samp>magick identify -verbose myImage.png</samp></pre></p>
</div>
</main><!-- /.container -->
diff --git a/www/compare.html b/www/compare.html
index 33a0718..1a5956f 100644
--- a/www/compare.html
+++ b/www/compare.html
@@ -117,10 +117,6 @@
</li>
</ul>
- <form class="d-flex form-inline" action="search.html">
- <input class="form-control me-2" type="text" name="q" placeholder="Search" aria-label="Search">
- <button class="btn btn-outline-success" type="submit" name="sa">Search</button>
- </form>
</div>
</div>
</nav>
@@ -480,7 +476,6 @@ transparent, extract, background, or shape the alpha channel</td>
<td><a href="command-line-options.html#write-mask">-read-mask <var>filename</var></a></td>
<td>associate a write mask with the image</td>
</tr>
- </tr>
</tbody>
</table>
</div>
diff --git a/www/compose.html b/www/compose.html
index 784335d..a72e712 100644
--- a/www/compose.html
+++ b/www/compose.html
@@ -117,10 +117,6 @@
</li>
</ul>
- <form class="d-flex form-inline" action="search.html">
- <input class="form-control me-2" type="text" name="q" placeholder="Search" aria-label="Search">
- <button class="btn btn-outline-success" type="submit" name="sa">Search</button>
- </form>
</div>
</div>
</nav>
@@ -382,6 +378,7 @@ the rest of the image outside the overlaid area. </p>
<td>interpolate</td>
<td>This mode somehow combines multiply and screen mode (looks very similar for very dark or bright colors). </td>
</tr>
+ </tbody>
</table>
<p>Typically these use the default 'Over' alpha blending when transparencies
diff --git a/www/contact.html b/www/contact.html
index 0d00929..a99dd4a 100644
--- a/www/contact.html
+++ b/www/contact.html
@@ -118,10 +118,6 @@
</li>
</ul>
- <form class="d-flex form-inline" action="search.html">
- <input class="form-control me-2" type="text" name="q" placeholder="Search" aria-label="Search">
- <button class="btn btn-outline-success" type="submit" name="sa">Search</button>
- </form>
</div>
</div>
</nav>
diff --git a/www/convert.html b/www/convert.html
index 1569875..5db617a 100644
--- a/www/convert.html
+++ b/www/convert.html
@@ -117,10 +117,6 @@
</li>
</ul>
- <form class="d-flex form-inline" action="search.html">
- <input class="form-control me-2" type="text" name="q" placeholder="Search" aria-label="Search">
- <button class="btn btn-outline-success" type="submit" name="sa">Search</button>
- </form>
</div>
</div>
</nav>
diff --git a/www/convex-hull.html b/www/convex-hull.html
index a0cb5cc..7847fb4 100644
--- a/www/convex-hull.html
+++ b/www/convex-hull.html
@@ -117,10 +117,6 @@
</li>
</ul>
- <form class="d-flex form-inline" action="search.html">
- <input class="form-control me-2" type="text" name="q" placeholder="Search" aria-label="Search">
- <button class="btn btn-outline-success" type="submit" name="sa">Search</button>
- </form>
</div>
</div>
</nav>
@@ -180,7 +176,7 @@ magick [-fuzz <var>value</var>%] [-background <var>background-color</var>] -form
<ul><img class="img-fluid img-thumbnail" src="../images/convex-hull-barn-closure.jpg" alt="[Convex Hull Barn Closure]" width="250" height="250" name="convert-hull-barn-closure" /></ul>
<h2><a class="anchor" id="box"></a>Minimum Bounding Box</h2>
-<p>Similar to the convex hull of the image foreground object(s), is the minimum bounding box. Use <samp>%[minimum-bounding-box]</samp> to return the points that make up the bounding box. In addition, these properties are set: <samp>minimum-bounding-box:area</samp>, <samp>minimum-bounding-box:width</samp>, <samp>minimum-bounding-box:height</samp>, and <samp>minimum-bounding-box:angle</samp>.
+<p>Similar to the convex hull of the image foreground object(s), is the minimum bounding box. Use <samp>%[minimum-bounding-box]</samp> to return the points that make up the bounding box. In addition, these properties are set: <samp>minimum-bounding-box:area</samp>, <samp>minimum-bounding-box:width</samp>, <samp>minimum-bounding-box:height</samp>, and <samp>minimum-bounding-box:angle</samp>. </p>
<pre class="code">magick barn_rot20.png -fuzz 10% -background gray25 -set MBR "%[minimum-bounding-box]" -fill none -stroke red -strokewidth 1 -draw "polygon %[MBR]" barn-mbr.png</pre>
diff --git a/www/defines.html b/www/defines.html
index ce0d10c..a75c872 100644
--- a/www/defines.html
+++ b/www/defines.html
@@ -171,7 +171,7 @@ use:</p>
<table class="table table-sm table-hover table-striped table-responsive">
<tr>
- <th align="center" colspan=2>Command-line Defines</th>
+ <th align="center" colspan="2">Command-line Defines</th>
</tr>
<tr>
@@ -816,7 +816,7 @@ use:</p>
</tr>
<tr>
- <th align="center" colspan=2>IMAGE FORMATS</th>
+ <th align="center" colspan="2">IMAGE FORMATS</th>
</tr>
<tr>
@@ -1048,7 +1048,7 @@ use:</p>
<tr>
<td>identify:convex-hull=<var>true</var></td>
- <td>Display convex hull & minimum bounding box.</td>
+ <td>Display convex hull & minimum bounding box.</td>
</tr>
<tr>
diff --git a/www/distribute-pixel-cache.html b/www/distribute-pixel-cache.html
index 846096e..48afa7f 100644
--- a/www/distribute-pixel-cache.html
+++ b/www/distribute-pixel-cache.html
@@ -117,10 +117,6 @@
</li>
</ul>
- <form class="d-flex form-inline" action="search.html">
- <input class="form-control me-2" type="text" name="q" placeholder="Search" aria-label="Search">
- <button class="btn btn-outline-success" type="submit" name="sa">Search</button>
- </form>
</div>
</div>
</nav>
diff --git a/www/escape.html b/www/escape.html
index 418e749..09bfdef 100644
--- a/www/escape.html
+++ b/www/escape.html
@@ -117,10 +117,6 @@
</li>
</ul>
- <form class="d-flex form-inline" action="search.html">
- <input class="form-control me-2" type="text" name="q" placeholder="Search" aria-label="Search">
- <button class="btn btn-outline-success" type="submit" name="sa">Search</button>
- </form>
</div>
</div>
</nav>
diff --git a/www/exception.html b/www/exception.html
index e38b828..d298305 100644
--- a/www/exception.html
+++ b/www/exception.html
@@ -117,10 +117,6 @@
</li>
</ul>
- <form class="d-flex form-inline" action="search.html">
- <input class="form-control me-2" type="text" name="q" placeholder="Search" aria-label="Search">
- <button class="btn btn-outline-success" type="submit" name="sa">Search</button>
- </form>
</div>
</div>
</nav>
diff --git a/www/formats.html b/www/formats.html
index eb016a3..e72de6f 100644
--- a/www/formats.html
+++ b/www/formats.html
@@ -237,7 +237,7 @@ Imagemagick is <a href="../www/high-dynamic-range.html">HDRI</a>-enabled. Essen
B channels are stored with a 50% gray bias, to allow it to handle the
negatives required by the format.</p>
-<pre class="p-3 mb-2 text-body-secondary bg-body-tertiary cli"><samp>magick lab.tif -resize 50% resize.jpg </samp></pre> </ul>
+<pre class="p-3 mb-2 text-body-secondary bg-body-tertiary cli"><samp>magick lab.tif -resize 50% resize.jpg </samp></pre>
<p>Again, it may not make sense for some image processing operators to work
directly in LAB space, but ImageMagick permits it and generally returns
diff --git a/www/fx.html b/www/fx.html
index 0cbd4a4..a4e16af 100644
--- a/www/fx.html
+++ b/www/fx.html
@@ -117,10 +117,6 @@
</li>
</ul>
- <form class="d-flex form-inline" action="search.html">
- <input class="form-control me-2" type="text" name="q" placeholder="Search" aria-label="Search">
- <button class="btn btn-outline-success" type="submit" name="sa">Search</button>
- </form>
</div>
</div>
</nav>
@@ -325,7 +321,7 @@
<dt class="col-md-4"> image attributes:</dt>
<dd class="col-md-8"> s.depth, s.kurtosis, s.maxima, s.mean, s.minima, s.resolution.x, s.resolution.y, s.skewness, s.standard_deviation</dd>
<dt class="col-md-4"> user settings:</dt>
- <dd class="col-md-8">define Fx symbols as user settings, e.g. <pre class="p-3 mb-2 text-body-secondary bg-body-tertiary cli"><samp>magick ... -set option:wd1 "%[fx:w/2]" -resize "%[fx:wd1-5]" ...</samp></pre><dd>
+ <dd class="col-md-8">define Fx symbols as user settings, e.g. <pre class="p-3 mb-2 text-body-secondary bg-body-tertiary cli"><samp>magick ... -set option:wd1 "%[fx:w/2]" -resize "%[fx:wd1-5]" ...</samp></pre></dd>
</dl>
<h4>The FX Expression</h4>
@@ -435,7 +431,7 @@
<li>single character variables are reserved. Assignments to reserved built-ins throw an exception; e.g. <samp>r=3.0; r</samp> returns <em>Attempted assignment to non-UserSymbol 'r' at '3.0'</em>.</li>
<li>unary operators have a lower priority than binary operators, that is, the unary minus (negation) has lower precedence than exponentiation, so -3^2 is interpreted as -(3^2) = -9. Use parentheses to clarify your intent (e.g. (-3)^2 = 9).</li>
<li>care must be exercised when using the slash ('/') symbol. The string of characters <var>1/2x</var> is interpreted as (1/2)x. The contrary interpretation should be written explicitly as 1/(2x). Again, the use of parentheses helps clarify the meaning and should be used whenever there is any chance of misinterpretation.</li>
-<li>As <samp>--<samp> is the variable decrement operator, use parenthesis to subtract a negative number, e.g, <samp>-4-(-5)</samp>.</li>
+<li>As <samp>--</samp> is the variable decrement operator, use parenthesis to subtract a negative number, e.g, <samp>-4-(-5)</samp>.</li>
</ul>
<br/>
diff --git a/www/gradient.html b/www/gradient.html
index 017f184..78e753a 100644
--- a/www/gradient.html
+++ b/www/gradient.html
@@ -117,10 +117,6 @@
</li>
</ul>
- <form class="d-flex form-inline" action="search.html">
- <input class="form-control me-2" type="text" name="q" placeholder="Search" aria-label="Search">
- <button class="btn btn-outline-success" type="submit" name="sa">Search</button>
- </form>
</div>
</div>
</nav>
diff --git a/www/high-dynamic-range.html b/www/high-dynamic-range.html
index 8bd29fb..6add65e 100644
--- a/www/high-dynamic-range.html
+++ b/www/high-dynamic-range.html
@@ -117,10 +117,6 @@
</li>
</ul>
- <form class="d-flex form-inline" action="search.html">
- <input class="form-control me-2" type="text" name="q" placeholder="Search" aria-label="Search">
- <button class="btn btn-outline-success" type="submit" name="sa">Search</button>
- </form>
</div>
</div>
</nav>
diff --git a/www/history.html b/www/history.html
index b8faa12..dd095d1 100644
--- a/www/history.html
+++ b/www/history.html
@@ -117,10 +117,6 @@
</li>
</ul>
- <form class="d-flex form-inline" action="search.html">
- <input class="form-control me-2" type="text" name="q" placeholder="Search" aria-label="Search">
- <button class="btn btn-outline-success" type="submit" name="sa">Search</button>
- </form>
</div>
</div>
</nav>
diff --git a/www/identify.html b/www/identify.html
index 8ffb971..6913218 100644
--- a/www/identify.html
+++ b/www/identify.html
@@ -117,10 +117,6 @@
</li>
</ul>
- <form class="d-flex form-inline" action="search.html">
- <input class="form-control me-2" type="text" name="q" placeholder="Search" aria-label="Search">
- <button class="btn btn-outline-success" type="submit" name="sa">Search</button>
- </form>
</div>
</div>
</nav>
diff --git a/www/install-source.html b/www/install-source.html
index 627ddcf..86b432e 100644
--- a/www/install-source.html
+++ b/www/install-source.html
@@ -117,10 +117,6 @@
</li>
</ul>
- <form class="d-flex form-inline" action="search.html">
- <input class="form-control me-2" type="text" name="q" placeholder="Search" aria-label="Search">
- <button class="btn btn-outline-success" type="submit" name="sa">Search</button>
- </form>
</div>
</div>
</nav>
@@ -195,7 +191,7 @@ make</samp></pre>
<p>We recommend you first uninstall an existing ImageMagick, else you might be surprised that your <samp>magick</samp> commands go to the old version.</p>
<p>Building ImageMagick source for Windows can be done with a modern version of Microsoft Visual Studio IDE. Users have reported success with the Borland C++ compiler as well. If you don't have a compiler you can still install a self-installing <a href="download.html">binary release</a>.</p>
-<p>Clone the Github repo:<p>
+<p>Clone the Github repo:</p>
<pre class="p-3 mb-2 text-body-secondary bg-body-tertiary"><samp>git clone https://github.com/ImageMagick/ImageMagick-Windows.git ImageMagick-Windows-7</samp></pre>
@@ -203,7 +199,7 @@ make</samp></pre>
<p>and run <samp>CloneRepositories.cmd</samp>. Or download <a href="../archive/windows">ImageMagick-Windows.zip</a> from <a href="../archive/windows">imagemagick.org</a> or a <a href="mirror.html">mirror</a> and verify the distribution against its <a href="../archive/digest.rdf">message digest</a>.</p>
<pre class="p-3 mb-2 text-body-secondary bg-body-tertiary"><samp>unzip ImageMagick-windows.zip</samp></pre>
-<p> Unzip in a folder that does not need Admin permissions, otherwise Visual Studio will not be able to build the solution.<p>
+<p> Unzip in a folder that does not need Admin permissions, otherwise Visual Studio will not be able to build the solution.</p>
<p>Next, launch your Visual Studio IDE and choose <kbd>Open->Project</kbd>. Select the configure workspace from the <kbd>ImageMagick-7.1.1/VisualMagick/configure</kbd> folder and open configure.sln. Choose <kbd>Build->Build Solution</kbd>
to compile the program and on completion run the program.</p>
@@ -218,7 +214,7 @@ to compile the program and on completion run the program.</p>
<pre class="p-3 mb-2 text-body-secondary bg-body-tertiary"><samp>cd ImageMagick-7.1.1
magick logo: image.jpg</samp></pre>
-<p>You may want to add the full path to VisualMagick\bin for your environment PATH variable, so you can call <samp>magick<samp> from any directory.<p>
+<p>You may want to add the full path to VisualMagick\bin for your environment PATH variable, so you can call <samp>magick</samp> from any directory.</p>
<p>For a more comprehensive test, run the ImageMagick validation suite:</p>
<pre class="p-3 mb-2 text-body-secondary bg-body-tertiary"><samp>validate
@@ -257,4 +253,4 @@ magick logo: image.jpg</samp></pre>
<script src="assets/bootstrap.bundle.min.js" ></script>
</body>
</html>
-<!-- Magick Cache 1st March 2025 16:53 -->
\ No newline at end of file
+<!-- Magick Cache 1st March 2025 16:53 -->
diff --git a/www/links.html b/www/links.html
index fdffdcf..39204c0 100644
--- a/www/links.html
+++ b/www/links.html
@@ -117,10 +117,6 @@
</li>
</ul>
- <form class="d-flex form-inline" action="search.html">
- <input class="form-control me-2" type="text" name="q" placeholder="Search" aria-label="Search">
- <button class="btn btn-outline-success" type="submit" name="sa">Search</button>
- </form>
</div>
</div>
</nav>
diff --git a/www/magick-cache.html b/www/magick-cache.html
index c769d5e..f0cb655 100644
--- a/www/magick-cache.html
+++ b/www/magick-cache.html
@@ -117,10 +117,6 @@
</li>
</ul>
- <form class="d-flex form-inline" action="search.html">
- <input class="form-control me-2" type="text" name="q" placeholder="Search" aria-label="Search">
- <button class="btn btn-outline-success" type="submit" name="sa">Search</button>
- </form>
</div>
</div>
</nav>
@@ -141,7 +137,7 @@
<pre class="p-3 mb-2 text-body-secondary bg-body-tertiary"><samp>$ magick-cache -passkey passkey.txt create /opt/magick-cache</samp></pre>
<p>Where `passkey.txt` contains your cache passkey. Don't lose your passkey. Without it, you will be unable to identify, expire, or delete content in your cache.</p>
<p>You only need to create a MagickCache once. You can, however, create more than one MagickCache with different paths.</p>
-<p>Once the MagickCache is created, you will want to populate the cache with content that includes images, video, audio, or metadata.
+<p>Once the MagickCache is created, you will want to populate the cache with content that includes images, video, audio, or metadata.</p>
<h4>Put content in the MagickCache</h4>
<p>Let's add a movie cast image to our newly created cache:</p>
<pre class="p-3 mb-2 text-body-secondary bg-body-tertiary"><samp>$ magick-cache put /opt/magick-cache movies/images/mission-impossible/cast/rebecca-ferguson 20210508-rebecca-ferguson.jpg</samp></pre>
@@ -223,4 +219,4 @@ identified 1 resources</samp></pre>
<script src="assets/bootstrap.bundle.min.js" ></script>
</body>
</html>
-<!-- Magick Cache 1st March 2025 19:23 -->
\ No newline at end of file
+<!-- Magick Cache 1st March 2025 19:23 -->
diff --git a/www/magick-script.html b/www/magick-script.html
index 32fbca1..709b4f9 100644
--- a/www/magick-script.html
+++ b/www/magick-script.html
@@ -117,10 +117,6 @@
</li>
</ul>
- <form class="d-flex form-inline" action="search.html">
- <input class="form-control me-2" type="text" name="q" placeholder="Search" aria-label="Search">
- <button class="btn btn-outline-success" type="submit" name="sa">Search</button>
- </form>
</div>
</div>
</nav>
@@ -143,7 +139,7 @@
</samp></pre>
<p>Or use the <samp>magick</samp> utility with the scripting option like this:</p>
-<pre class="p-3 mb-2 text-body-secondary bg-body-tertiary"></samp>#!/bin/magick -script
+<pre class="p-3 mb-2 text-body-secondary bg-body-tertiary"><samp>#!/bin/magick -script
-size 100x100 xc:red ( rose: -rotate -90 ) +append -write show:
</samp></pre>
@@ -1371,4 +1367,4 @@ transparent, extract, background, or shape the alpha channel</td>
<script src="assets/bootstrap.bundle.min.js" ></script>
</body>
</html>
-<!-- Magick Cache 1st March 2025 19:18 -->
\ No newline at end of file
+<!-- Magick Cache 1st March 2025 19:18 -->
diff --git a/www/magick-vector-graphics.html b/www/magick-vector-graphics.html
index 8c25464..f9f00cf 100644
--- a/www/magick-vector-graphics.html
+++ b/www/magick-vector-graphics.html
@@ -117,10 +117,6 @@
</li>
</ul>
- <form class="d-flex form-inline" action="search.html">
- <input class="form-control me-2" type="text" name="q" placeholder="Search" aria-label="Search">
- <button class="btn btn-outline-success" type="submit" name="sa">Search</button>
- </form>
</div>
</div>
</nav>
diff --git a/www/magick-wand.html b/www/magick-wand.html
index 6965507..927b700 100644
--- a/www/magick-wand.html
+++ b/www/magick-wand.html
@@ -117,10 +117,6 @@
</li>
</ul>
- <form class="d-flex form-inline" action="search.html">
- <input class="form-control me-2" type="text" name="q" placeholder="Search" aria-label="Search">
- <button class="btn btn-outline-success" type="submit" name="sa">Search</button>
- </form>
</div>
</div>
</nav>
@@ -354,12 +350,12 @@ static MagickBooleanType SigmoidalContrast(WandView *contrast_view,
pixels=GetWandViewPixels(contrast_view);
for (x=0; x < (ssize_t) extent.width; x++)
{
- PixelGetMagickColor(pixels[x],&pixel);
+ PixelGetMagickColor(pixels[x],&pixel);
pixel.red=SigmoidalContrast(pixel.red);
pixel.green=SigmoidalContrast(pixel.green);
pixel.blue=SigmoidalContrast(pixel.blue);
pixel.index=SigmoidalContrast(pixel.index);
- PixelSetPixelColor(pixels[x],&pixel);
+ PixelSetPixelColor(pixels[x],&pixel);
}
return(MagickTrue);
}
diff --git a/www/miff.html b/www/miff.html
index 48d773d..e5b346f 100644
--- a/www/miff.html
+++ b/www/miff.html
@@ -117,10 +117,6 @@
</li>
</ul>
- <form class="d-flex form-inline" action="search.html">
- <input class="form-control me-2" type="text" name="q" placeholder="Search" aria-label="Search">
- <button class="btn btn-outline-success" type="submit" name="sa">Search</button>
- </form>
</div>
</div>
</nav>
diff --git a/www/montage.html b/www/montage.html
index 0b74f9a..f656686 100644
--- a/www/montage.html
+++ b/www/montage.html
@@ -177,7 +177,7 @@
<p>You can find additional examples of using <samp>montage</samp> at <a href="https://usage.imagemagick.org/montage/">Examples of ImageMagick Usage</a> and <a href="../index.html">Examples of ImageMagick Usage</a>.</p>
<h4>Ashlar Pseudo-image Format</h4>
-<p>Use the Ashlar pseudo-image format to lay out an image sequence in continuous irregular courses. By default, a reasonable canvas size and border width is determined relative to the image collection you provide. You can explicitly set the canvas size and border width by appending to the filename, e.g. <samp>ashlar:canvas.png[1024x768+4+4]</samp>. By default, alignment is along the left edge. Use <samp>-define ashlar:best-fit=true</samp> to align on both the left and right edges. You can label the image tiles with, for example, <samp>-label %f</samp>. Here is an example command:
+<p>Use the Ashlar pseudo-image format to lay out an image sequence in continuous irregular courses. By default, a reasonable canvas size and border width is determined relative to the image collection you provide. You can explicitly set the canvas size and border width by appending to the filename, e.g. <samp>ashlar:canvas.png[1024x768+4+4]</samp>. By default, alignment is along the left edge. Use <samp>-define ashlar:best-fit=true</samp> to align on both the left and right edges. You can label the image tiles with, for example, <samp>-label %f</samp>. Here is an example command:</p>
<pre class="p-3 mb-2 text-body-secondary bg-body-tertiary cli"><samp>magick '*.png' -resize 320x320 -label %f ashlar:ashlar.png</samp></pre>
diff --git a/www/multispectral-imagery.html b/www/multispectral-imagery.html
index ceabd5c..9a933b0 100644
--- a/www/multispectral-imagery.html
+++ b/www/multispectral-imagery.html
@@ -333,11 +333,11 @@ Image:
Filesize: 306B
Number pixels: 1
</samp></pre>
-<p>Notice the channel depth and statistics associated with the two meta channels.<p>
+<p>Notice the channel depth and statistics associated with the two meta channels.</p>
<h5>Working with Multispectral Images</h5>
-<p>Meta channels are treated the same as any other channel meaning they can be read, written, and operated upon-- e.g., resized, gamma adjusted, etc.. Here, we replace the first channel with the contents of the meta channel:<p>
+<p>Meta channels are treated the same as any other channel meaning they can be read, written, and operated upon-- e.g., resized, gamma adjusted, etc.. Here, we replace the first channel with the contents of the meta channel:</p>
<pre class="p-3 mb-2 text-body-secondary bg-body-tertiary"><samp>magick multiMeta.tif -channel-fx 'meta1=>cyan' multiMeta-1.tif</samp></pre>
-<p>The original cyan channel has an intensity of 10. It's now, per the channel FX instructions, 50.<p>
+<p>The original cyan channel has an intensity of 10. It's now, per the channel FX instructions, 50.</p>
<p>And in this example, we create two meta channels:</p>
<pre class="p-3 mb-2 text-body-secondary bg-body-tertiary"><samp>magick lena.png \( mandril3.jpg -colorspace gray \) -channel-fx '| gray=>meta' \( zelda1.jpg -colorspace gray \) -channel-fx '| gray=>meta1' meta.tif</samp></pre>
<p>In this example, we blend two meta channels into a single alpha channel:</p>
diff --git a/www/news.html b/www/news.html
index ba5d2c2..76c333a 100644
--- a/www/news.html
+++ b/www/news.html
@@ -201,7 +201,7 @@
<p>The <samp>magick convert</samp> command is deprecated, use <samp>magick</samp> instead. The deprecated command still works, however, it now posts a warning it is deprecated.</p>
-<p>Creating a security policy that fits your specific local environment before making use of ImageMagick is highly advised. You can find guidance on setting up this <a href="security-policy.html">policy</a>. Also, it's important to verify your policy using the <a href="../index.html">validation tool</a>. As of ImageMagick version 7.1.1-16, you can choose and customize one of these <a href="security-policy.html">security policies</a>: Open, Limited, Secure, and Websafe.<p>
+<p>Creating a security policy that fits your specific local environment before making use of ImageMagick is highly advised. You can find guidance on setting up this <a href="security-policy.html">policy</a>. Also, it's important to verify your policy using the <a href="../index.html">validation tool</a>. As of ImageMagick version 7.1.1-16, you can choose and customize one of these <a href="security-policy.html">security policies</a>: Open, Limited, Secure, and Websafe.</p>
<p>By default, ImageMagick supports up to 32 channels. As of ImageMagick version 7.1.1-16, you can enable up to 64 channels by adding the <samp>--enable-64bit-channel-masks</samp> option to the Linux configure build script. For Windows, just select the option from the configure application.</p>
@@ -218,7 +218,7 @@
<h4>Related Software</h4>
<p>The <a href="https://github.com/ImageMagick/MagickCache/">MagickCache</a> provides methods and tools to cache images, image sequences, video, audio or metadata in a local folder. Any content is memory-mapped for efficient retrieval. Additional efficiencies are possible by retrieving a portion of an image. Content can persist or you can assign a time-to-live (TTL) to automatically expire content when the TTL is exceeded. MagickCache supports virtually unlimited content upwards of billions of images making it suitable as a web image service.
-
+</p>
<h4>ImageMagick Development</h4>
<p>The ImageMagick development process ensures a stable API and <a href="https://abi-laboratory.pro/tracker/timeline/imagemagick/">ABI</a>. Before each ImageMagick release, we perform a comprehensive security assessment that includes <a href="https://github.com/google/sanitizers/wiki/AddressSanitizer">memory error</a>, <a href="https://github.com/google/sanitizers/wiki/ThreadSanitizer">thread data race</a> detection, and continuous <a href="https://github.com/google/oss-fuzz">fuzzing</a> to detect and prevent security vulnerabilities.</p>
@@ -238,6 +238,7 @@
<p>As an analog to linear (RGB) and non-linear (sRGB) color colorspaces, as of ImageMagick 7.0.7-17, we introduce the LinearGray colorspace. Gray is non-linear grayscale and LinearGray is linear (e.g. -colorspace linear-gray).</p>
<p>Now that ImageMagick version 7 is released, we continue to maintain the legacy release of ImageMagick, version 6, at <a href="../index.html">https://legacy.imagemagick.org</a>. Learn how ImageMagick version 7 differs from previous versions with our <a href="porting.html">porting guide</a>.</p>
+
</div>
</main><!-- /.container -->
<footer class="text-center pt-5 my-5 text-body-secondary border-top">
diff --git a/www/opencl.html b/www/opencl.html
index 74bc495..56cfe6d 100644
--- a/www/opencl.html
+++ b/www/opencl.html
@@ -117,10 +117,6 @@
</li>
</ul>
- <form class="d-flex form-inline" action="search.html">
- <input class="form-control me-2" type="text" name="q" placeholder="Search" aria-label="Search">
- <button class="btn btn-outline-success" type="submit" name="sa">Search</button>
- </form>
</div>
</div>
</nav>
diff --git a/www/privacy-policy.html b/www/privacy-policy.html
index 2b184a0..30c6d5d 100644
--- a/www/privacy-policy.html
+++ b/www/privacy-policy.html
@@ -117,10 +117,6 @@
</li>
</ul>
- <form class="d-flex form-inline" action="search.html">
- <input class="form-control me-2" type="text" name="q" placeholder="Search" aria-label="Search">
- <button class="btn btn-outline-success" type="submit" name="sa">Search</button>
- </form>
</div>
</div>
</nav>
diff --git a/www/quantize.html b/www/quantize.html
index 6a5cc2b..85bbce7 100644
--- a/www/quantize.html
+++ b/www/quantize.html
@@ -117,10 +117,6 @@
</li>
</ul>
- <form class="d-flex form-inline" action="search.html">
- <input class="form-control me-2" type="text" name="q" placeholder="Search" aria-label="Search">
- <button class="btn btn-outline-success" type="submit" name="sa">Search</button>
- </form>
</div>
</div>
</nav>
diff --git a/www/search.html b/www/search.html
index acca971..01570d5 100644
--- a/www/search.html
+++ b/www/search.html
@@ -117,10 +117,6 @@
</li>
</ul>
- <form class="d-flex form-inline" action="search.html">
- <input class="form-control me-2" type="text" name="q" placeholder="Search" aria-label="Search">
- <button class="btn btn-outline-success" type="submit" name="sa">Search</button>
- </form>
</div>
</div>
</nav>
diff --git a/www/sitemap.html b/www/sitemap.html
index 59ec1be..16a9860 100644
--- a/www/sitemap.html
+++ b/www/sitemap.html
@@ -117,10 +117,6 @@
</li>
</ul>
- <form class="d-flex form-inline" action="search.html">
- <input class="form-control me-2" type="text" name="q" placeholder="Search" aria-label="Search">
- <button class="btn btn-outline-success" type="submit" name="sa">Search</button>
- </form>
</div>
</div>
</nav>
diff --git a/www/support.html b/www/support.html
index acc1d62..6ca41e4 100644
--- a/www/support.html
+++ b/www/support.html
@@ -117,10 +117,6 @@
</li>
</ul>
- <form class="d-flex form-inline" action="search.html">
- <input class="form-control me-2" type="text" name="q" placeholder="Search" aria-label="Search">
- <button class="btn btn-outline-success" type="submit" name="sa">Search</button>
- </form>
</div>
</div>
</nav>
@@ -143,7 +139,7 @@
<dl>
<!-- source repos, social coding -->
- <dt class="col-md-12"><a href="../index.html"><a href="https://github.com/sponsors/ImageMagick" rel="noopener" target="_blank" aria-label="GitHub"><svg xmlns="http://www.w3.org/2000/svg" class="navbar-nav-svg" viewBox="0 0 512 499.36" width="5%" height="5%" role="img" focusable="false"><title>GitHub</title><path fill="currentColor" fill-rule="evenodd" d="M256 0C114.64 0 0 114.61 0 256c0 113.09 73.34 209 175.08 242.9 12.8 2.35 17.47-5.56 17.47-12.34 0-6.08-.22-22.18-.35-43.54-71.2 15.49-86.2-34.34-86.2-34.34-11.64-29.57-28.42-37.45-28.42-37.45-23.27-15.84 1.73-15.55 1.73-15.55 25.69 1.81 39.21 26.38 39.21 26.38 22.84 39.12 59.92 27.82 74.5 21.27 2.33-16.54 8.94-27.82 16.25-34.22-56.84-6.43-116.6-28.43-116.6-126.49 0-27.95 10-50.8 26.35-68.69-2.63-6.48-11.42-32.5 2.51-67.75 0 0 21.49-6.88 70.4 26.24a242.65 242.65 0 0 1 128.18 0c48.87-33.13 70.33-26.24 70.33-26.24 14 35.25 5.18 61.27 2.55 67.75 16.41 17.9 26.31 40.75 26.31 68.69 0 98.35-59.85 120-116.88 126.32 9.19 7.9 17.38 23.53 17.38 47.41 0 34.22-.31 61.83-.31 70.23 0 6.85 4.61 14.81 17.6 12.31C438.72 464.97 512 369.08 512 256.02 512 114.62 397.37 0 256 0z"/></svg></a> The world's leading software development platform.</dt><br/>
+ <dt class="col-md-12"><a href="https://github.com/sponsors/ImageMagick" rel="noopener" target="_blank" aria-label="GitHub"><svg xmlns="http://www.w3.org/2000/svg" class="navbar-nav-svg" viewBox="0 0 512 499.36" width="5%" height="5%" role="img" focusable="false"><title>GitHub</title><path fill="currentColor" fill-rule="evenodd" d="M256 0C114.64 0 0 114.61 0 256c0 113.09 73.34 209 175.08 242.9 12.8 2.35 17.47-5.56 17.47-12.34 0-6.08-.22-22.18-.35-43.54-71.2 15.49-86.2-34.34-86.2-34.34-11.64-29.57-28.42-37.45-28.42-37.45-23.27-15.84 1.73-15.55 1.73-15.55 25.69 1.81 39.21 26.38 39.21 26.38 22.84 39.12 59.92 27.82 74.5 21.27 2.33-16.54 8.94-27.82 16.25-34.22-56.84-6.43-116.6-28.43-116.6-126.49 0-27.95 10-50.8 26.35-68.69-2.63-6.48-11.42-32.5 2.51-67.75 0 0 21.49-6.88 70.4 26.24a242.65 242.65 0 0 1 128.18 0c48.87-33.13 70.33-26.24 70.33-26.24 14 35.25 5.18 61.27 2.55 67.75 16.41 17.9 26.31 40.75 26.31 68.69 0 98.35-59.85 120-116.88 126.32 9.19 7.9 17.38 23.53 17.38 47.41 0 34.22-.31 61.83-.31 70.23 0 6.85 4.61 14.81 17.6 12.31C438.72 464.97 512 369.08 512 256.02 512 114.62 397.37 0 256 0z"/></svg></a> The world's leading software development platform.</dt><br/>
<!-- online studio + jqmagick -->
<dt class="col-md-12"><a href="../index.html"> <img class="clearfix" src="../images/futureweb_red.png" width="143" height="160" alt="[Futureweb – Your Austrian Webdesign & Hosting Company]" /></a> Futureweb – Your Austrian Webdesign & Hosting Company.</dt><br/>
</dl>
@@ -172,7 +168,7 @@
<p>Donations can be anonymous, or public.</p>
<fieldset>
<legend>Sponsor the ImageMagick Project</legend>
-<h2>Github</a></h2>
+<h2>Github</h2>
<p>ImageMagick Studio LLC is the organization that designs, maintains, and enhances the ImageMagick software suite. In the past, we paid for the privilege of producing free software out of our own pockets. Now, to help defray costs associated with network bandwidth, development software, computer hardware, taxes, legal, and other expenses, we accept donations from individuals or companies like yourself.</p>
<ul>
@@ -224,4 +220,4 @@
<script src="assets/bootstrap.bundle.min.js" ></script>
</body>
</html>
-<!-- Magick Cache 1st March 2025 19:22 -->
\ No newline at end of file
+<!-- Magick Cache 1st March 2025 19:22 -->
diff --git a/www/vpat.html b/www/vpat.html
index 9e45ac2..a67f80a 100644
--- a/www/vpat.html
+++ b/www/vpat.html
@@ -117,10 +117,6 @@
</li>
</ul>
- <form class="d-flex form-inline" action="search.html">
- <input class="form-control me-2" type="text" name="q" placeholder="Search" aria-label="Search">
- <button class="btn btn-outline-success" type="submit" name="sa">Search</button>
- </form>
</div>
</div>
</nav>
diff --git a/www/webp.html b/www/webp.html
index a374726..1edcb3f 100644
--- a/www/webp.html
+++ b/www/webp.html
@@ -117,10 +117,6 @@
</li>
</ul>
- <form class="d-flex form-inline" action="search.html">
- <input class="form-control me-2" type="text" name="q" placeholder="Search" aria-label="Search">
- <button class="btn btn-outline-success" type="submit" name="sa">Search</button>
- </form>
</div>
</div>
</nav>
@@ -282,4 +278,4 @@
<script src="assets/bootstrap.bundle.min.js" ></script>
</body>
</html>
-<!-- Magick Cache 1st March 2025 18:32 -->
\ No newline at end of file
+<!-- Magick Cache 1st March 2025 18:32 -->
|