]> granicus.if.org Git - imagemagick/commitdiff
(no commit message)
authorcristy <urban-warrior@git.imagemagick.org>
Mon, 1 Feb 2010 01:08:27 +0000 (01:08 +0000)
committercristy <urban-warrior@git.imagemagick.org>
Mon, 1 Feb 2010 01:08:27 +0000 (01:08 +0000)
utilities/convert.1.in
utilities/identify.1.in
utilities/mogrify.1.in
wand/convert.c
wand/identify.c
wand/mogrify.c

index 93ccddd95c40d17fbee6cb73fdae5eaecbe13068..884b7e78a956be28ef011e867d3e4fab3594b96b 100644 (file)
@@ -152,6 +152,8 @@ Image Operators:
   \-median radius       apply a median filter to the image
   \-modulate value      vary the brightness, saturation, and hue
   \-monochrome          transform image to black and white
+  \-morphology method kernel
+                       apply a morphology method to the image
   \-motion-blur geometry
                        simulate motion blur
   \-negate              replace every pixel with its complementary color 
index be648bf26baa0aa888275f2eec02abd35ac0ff7f..6367cf6e98a4ad27df5f57503051eca9c5fc2bea 100644 (file)
@@ -20,6 +20,7 @@ Image Settings:
   \-density geometry    horizontal and vertical density of the image
   \-depth value         image depth
   \-extract geometry    extract area from image
+  \-features distance   display image features (e.g. contrast, correlation)
   \-format "string"     output formatted image characteristics
   \-fuzz distance       colors within this distance are considered equal
   \-interlace type      type of image interlacing scheme
@@ -38,6 +39,7 @@ Image Settings:
   \-set attribute value set an image attribute
   \-size geometry       width and height of image
   \-strip               strip image of all profiles and comments
+  \-unique              display the number of unique colors in the image
   \-units type          the units of image resolution
   \-verbose             print detailed information about the image
   \-virtual-pixel method
index 3deb11a13f77d81be62a88f22bd805ec3da511c7..2572b61502f8761e57c016016d7bc77d16f6b057 100644 (file)
@@ -60,6 +60,8 @@ Image Settings:
   \-matte               store matte channel if the image has one
   \-mattecolor color    frame color
   \-monitor             monitor progress
+  \-morphology method kernel
+                       apply a morphology method to the image
   \-orient type         image orientation
   \-origin geometry     image origin
   \-page geometry       size and location of an image canvas (setting)
index 79aba460c608c7d15ea37ca97b608eaa3876e820..f705ea09c880032149adf4bd450f30a5e6355d1b 100644 (file)
@@ -219,7 +219,7 @@ static MagickBooleanType ConvertUsage(void)
       "-median radius       apply a median filter to the image",
       "-modulate value      vary the brightness, saturation, and hue",
       "-monochrome          transform image to black and white",
-      "-morphology method[:interation] kernel_specification",
+      "-morphology method[:iterations] kernel",
       "                     apply a morphology method to the image",
       "-motion-blur geometry",
       "                     simulate motion blur",
index e2e2777179c2688d29e30e148c0f4249868acc23..31afcd6303e21aebe95c831511db203959e802d6 100644 (file)
@@ -119,7 +119,7 @@ static MagickBooleanType IdentifyUsage(void)
       "-density geometry    horizontal and vertical density of the image",
       "-depth value         image depth",
       "-extract geometry    extract area from image",
-      "-features value      display image features (e.g. contrast, correlation)",
+      "-features distance   display image features (e.g. contrast, correlation)",
       "-format \"string\"     output formatted image characteristics",
       "-fuzz distance       colors within this distance are considered equal",
       "-gamma value         of gamma correction",
index 8d3f7062b45b3973c8120ca64c88d7bc7a70acf1..1f043d0e6bbf398a70e2bbfa4e7e469e10eeb58f 100644 (file)
@@ -2224,7 +2224,7 @@ WandExport MagickBooleanType MogrifyImage(ImageInfo *image_info,const int argc,
               ThrowWandFatalException(ResourceLimitFatalError,
                 "MemoryAllocationFailed",(*image)->filename);
             morphology_image=MorphologyImageChannel(*image,channel,method,
-                 iterations,kernel,exception);
+              iterations,kernel,exception);
             kernel=DestroyKernelInfo(kernel);
             if (morphology_image == (Image *) NULL)
               break;
@@ -3710,7 +3710,7 @@ static MagickBooleanType MogrifyUsage(void)
       "-median radius       apply a median filter to the image",
       "-modulate value      vary the brightness, saturation, and hue",
       "-monochrome          transform image to black and white",
-      "-morphology method[:interation] kernel_specification",
+      "-morphology method[:iterations] kernel",
       "                     apply a morphology method to the image",
       "-motion-blur geometry",
       "                     simulate motion blur",