]> granicus.if.org Git - imagemagick/commitdiff
Renamed DistortImageMethod to DistortMethod.
authordirk <dirk@git.imagemagick.org>
Mon, 1 Feb 2016 21:34:39 +0000 (22:34 +0100)
committerdirk <dirk@git.imagemagick.org>
Mon, 1 Feb 2016 21:34:39 +0000 (22:34 +0100)
Magick++/lib/Image.cpp
Magick++/lib/Magick++/Image.h
Magick++/lib/Magick++/Include.h
Magick++/lib/Magick++/STL.h
Magick++/lib/STL.cpp
MagickCore/distort.c
MagickCore/distort.h
MagickWand/magick-image.c
MagickWand/magick-image.h
MagickWand/mogrify.c
MagickWand/operation.c

index a287148ff8ed966df487e1387d0873f5782b3a93..d2addd599c00ec6656a1dc1ed3ba2e612298da16 100644 (file)
@@ -2734,7 +2734,7 @@ void Magick::Image::display(void)
   ThrowImageException;
 }
 
-void Magick::Image::distort(const DistortImageMethod method_,
+void Magick::Image::distort(const DistortMethod method_,
   const size_t numberArguments_,const double *arguments_,const bool bestfit_)
 {
   MagickCore::Image
index 680f12b9a072db23da4244056f63303f51ffb21e..7d668fae3a6e0983c7ad047a53fb7bafb48b0120 100644 (file)
@@ -837,7 +837,7 @@ namespace Magick
     // mapping color lookups of the source image to a new destination image
     // usally of the same size as the source image, unless 'bestfit' is set to
     // true.
-    void distort(const DistortImageMethod method_,
+    void distort(const DistortMethod method_,
       const size_t numberArguments_,const double *arguments_,
       const bool bestfit_=false);
 
index cd3d68c586ed706ba023acf7e9eef035efd0db75..195e22ab5222b7d8980fcf5408c3f8524b0bef3e 100644 (file)
@@ -530,7 +530,7 @@ namespace Magick
   using MagickCore::PreviousDispose;
 
   // Distort methods
-  using MagickCore::DistortImageMethod;
+  using MagickCore::DistortMethod;
   using MagickCore::UndefinedDistortion;
   using MagickCore::AffineDistortion;
   using MagickCore::AffineProjectionDistortion;
index 6b0c5d79bc01f3f652512f7fc1eaa132418e5ee9..061d74fc789eae9576611a57c74bb0afe4c8edb5 100644 (file)
@@ -351,19 +351,19 @@ namespace Magick
   class MagickPPExport distortImage : public std::unary_function<Image&,void>
   {
   public:
-    distortImage( const Magick::DistortImageMethod method_,
+    distortImage( const Magick::DistortMethod method_,
       const size_t number_arguments_,
       const double *arguments_,
       const bool bestfit_ );
           
-    distortImage( const Magick::DistortImageMethod method_,
+    distortImage( const Magick::DistortMethod method_,
       const size_t number_arguments_,
       const double *arguments_ );
 
     void operator()( Image &image_ ) const;
 
   private:
-    DistortImageMethod _method;
+    DistortMethod _method;
     size_t _number_arguments;
     const double *_arguments;
     bool _bestfit;
index 57a3ebd00c639cb04d423f6c8580a93cee975792..1ed57b620dd2d94b48cd9b3b886a3434296fa0d2 100644 (file)
@@ -297,7 +297,7 @@ void Magick::despeckleImage::operator()( Magick::Image &image_ ) const
 // mapping color lookups of the source image to a new destination image
 // usally of the same size as the source image, unless 'bestfit' is set to
 // true.
-Magick::distortImage::distortImage( const Magick::DistortImageMethod method_,
+Magick::distortImage::distortImage( const Magick::DistortMethod method_,
                                     const size_t number_arguments_,
                                     const double *arguments_,
                                     const bool bestfit_ )
@@ -307,7 +307,7 @@ Magick::distortImage::distortImage( const Magick::DistortImageMethod method_,
     _bestfit( bestfit_ )
 {
 }
-Magick::distortImage::distortImage( const Magick::DistortImageMethod method_,
+Magick::distortImage::distortImage( const Magick::DistortMethod method_,
                                     const size_t number_arguments_,
                                     const double *arguments_ )
   : _method ( method_ ),
index 36598dfae56ccd273ad27ee62e6b7876908264b4..033e26d1f934d331d0e9b3d137efe4733c1153f8 100644 (file)
@@ -328,7 +328,7 @@ MagickExport Image *AffineTransformImage(const Image *image,
 %
 %  The format of the GenerateCoefficients() method is:
 %
-%    Image *GenerateCoefficients(const Image *image,DistortImageMethod method,
+%    Image *GenerateCoefficients(const Image *image,DistortMethod method,
 %        const size_t number_arguments,const double *arguments,
 %        size_t number_values, ExceptionInfo *exception)
 %
@@ -371,8 +371,8 @@ static inline double MagickRound(double x)
 }
 
 static double *GenerateCoefficients(const Image *image,
-  DistortImageMethod *method,const size_t number_arguments,
-  const double *arguments,size_t number_values,ExceptionInfo *exception)
+  DistortMethod *method,const size_t number_arguments,const double *arguments,
+  size_t number_values,ExceptionInfo *exception)
 {
   double
     *coeff;
@@ -1609,7 +1609,7 @@ MagickExport Image *DistortResizeImage(const Image *image,
 %
 %  The format of the DistortImage() method is:
 %
-%      Image *DistortImage(const Image *image,const DistortImageMethod method,
+%      Image *DistortImage(const Image *image,const DistortMethod method,
 %        const size_t number_arguments,const double *arguments,
 %        MagickBooleanType bestfit, ExceptionInfo *exception)
 %
@@ -1670,7 +1670,7 @@ MagickExport Image *DistortResizeImage(const Image *image,
 %                    instead
 %
 */
-MagickExport Image *DistortImage(const Image *image,DistortImageMethod method,
+MagickExport Image *DistortImage(const Image *image, DistortMethod method,
   const size_t number_arguments,const double *arguments,
   MagickBooleanType bestfit,ExceptionInfo *exception)
 {
@@ -2923,10 +2923,10 @@ MagickExport Image *SparseColorImage(const Image *image,
     Convert input arguments into mapping coefficients, this this case
     we are mapping (distorting) colors, rather than coordinates.
   */
-  { DistortImageMethod
+  { DistortMethod
       distort_method;
 
-    distort_method=(DistortImageMethod) method;
+    distort_method=(DistortMethod) method;
     if ( distort_method >= SentinelDistortion )
       distort_method = ShepardsDistortion; /* Pretend to be Shepards */
     coeff = GenerateCoefficients(image, &distort_method, number_arguments,
index 480f61d04785b1c5b934f2459e02c07968ab7062..555c2adc4ba221e76262d0809f346c54a4278f08 100644 (file)
@@ -53,7 +53,7 @@ typedef enum
   ShepardsDistortion,
   ResizeDistortion,
   SentinelDistortion
-} DistortImageMethod;
+} DistortMethod;
 
 typedef enum
 {
@@ -72,7 +72,7 @@ typedef enum
 
 extern MagickExport Image
   *AffineTransformImage(const Image *,const AffineMatrix *,ExceptionInfo *),
-  *DistortImage(const Image *,const DistortImageMethod,const size_t,
+  *DistortImage(const Image *,const DistortMethod,const size_t,
     const double *,MagickBooleanType,ExceptionInfo *exception),
   *DistortResizeImage(const Image *,const size_t,const size_t,ExceptionInfo *),
   *RotateImage(const Image *,const double,ExceptionInfo *),
index 12ad6e02e02d9d83623b01169bb4958bc4f0ef8d..1b06d85154e37a969eda9c006ed813a7cacd2677 100644 (file)
@@ -2642,7 +2642,7 @@ WandExport MagickBooleanType MagickDisplayImages(MagickWand *wand,
 %  The format of the MagickDistortImage method is:
 %
 %      MagickBooleanType MagickDistortImage(MagickWand *wand,
-%        const DistortImageMethod method,const size_t number_arguments,
+%        const DistortMethod method,const size_t number_arguments,
 %        const double *arguments,const MagickBooleanType bestfit)
 %
 %  A description of each parameter follows:
@@ -2678,7 +2678,7 @@ WandExport MagickBooleanType MagickDisplayImages(MagickWand *wand,
 %
 */
 WandExport MagickBooleanType MagickDistortImage(MagickWand *wand,
-  const DistortImageMethod method,const size_t number_arguments,
+  const DistortMethod method,const size_t number_arguments,
   const double *arguments,const MagickBooleanType bestfit)
 {
   Image
index b7f1ed4ce69de35ee7e8e7d0b71927b80fa776ee..63f248ada3b3629955f54d14168d27ada9038e3c 100644 (file)
@@ -128,7 +128,7 @@ extern WandExport MagickBooleanType
   MagickDespeckleImage(MagickWand *),
   MagickDisplayImage(MagickWand *,const char *),
   MagickDisplayImages(MagickWand *,const char *),
-  MagickDistortImage(MagickWand *,const DistortImageMethod,const size_t,
+  MagickDistortImage(MagickWand *,const DistortMethod,const size_t,
     const double *,const MagickBooleanType),
   MagickDrawImage(MagickWand *,const DrawingWand *),
   MagickEdgeImage(MagickWand *,const double),
index 2cdb431148a3cee8bb3f0ba960cfcfbc9c9dde4f..c57551da954ba890b4f1d34947eb5c0b16810a96 100644 (file)
@@ -1360,7 +1360,7 @@ WandExport MagickBooleanType MogrifyImage(ImageInfo *image_info,const int argc,
             const char
               *p;
 
-            DistortImageMethod
+            DistortMethod
               method;
 
             double
@@ -1376,7 +1376,7 @@ WandExport MagickBooleanType MogrifyImage(ImageInfo *image_info,const int argc,
               Distort image.
             */
             (void) SyncImageSettings(mogrify_info,*image,exception);
-            method=(DistortImageMethod) ParseCommandOption(MagickDistortOptions,
+            method=(DistortMethod) ParseCommandOption(MagickDistortOptions,
               MagickFalse,argv[i+1]);
             if (method == ResizeDistortion)
               {
index 9d58bcf82f3cda834d25e5ab60182c7f748ac190..0a3d87ae751932edb0c204f3c3613d009cf54a75 100644 (file)
@@ -2236,7 +2236,7 @@ static MagickBooleanType CLISimpleOperatorImage(MagickCLI *cli_wand,
           if ( parse < 0 )
              CLIWandExceptArgBreak(OptionError,"UnrecognizedDistortMethod",
                                       option,arg1);
-          if ((DistortImageMethod) parse == ResizeDistortion)
+          if ((DistortMethod) parse == ResizeDistortion)
             {
                double
                  resize_args[2];
@@ -2250,7 +2250,7 @@ static MagickBooleanType CLISimpleOperatorImage(MagickCLI *cli_wand,
                (void) ParseRegionGeometry(_image,arg2,&geometry,_exception);
                resize_args[0]=(double) geometry.width;
                resize_args[1]=(double) geometry.height;
-               new_image=DistortImage(_image,(DistortImageMethod) parse,
+               new_image=DistortImage(_image,(DistortMethod) parse,
                     (size_t)2,resize_args,MagickTrue,_exception);
                break;
             }
@@ -2259,7 +2259,7 @@ static MagickBooleanType CLISimpleOperatorImage(MagickCLI *cli_wand,
           if (args == (double *) NULL )
             CLIWandExceptArgBreak(OptionError,"InvalidNumberList",option,arg2);
 
-          new_image=DistortImage(_image,(DistortImageMethod) parse,(size_t)
+          new_image=DistortImage(_image,(DistortMethod) parse,(size_t)
              count,args,IsPlusOp,_exception);
           args=(double *) RelinquishMagickMemory(args);
           break;