(no commit message)
authorcristy <urban-warrior@git.imagemagick.org>
Mon, 5 Sep 2011 21:29:36 +0000 (21:29 +0000)
committercristy <urban-warrior@git.imagemagick.org>
Mon, 5 Sep 2011 21:29:36 +0000 (21:29 +0000)
Magick++/lib/Image.cpp
Magick++/lib/Magick++/Image.h

index 522b1db3b9ee4173679c145f7c7b281ba4d782ee..7160e26ffad16ee6e5096ac60fb427a3034394f5 100644 (file)
@@ -864,16 +864,6 @@ void Magick::Image::draw ( const std::list<Magick::Drawable> &drawable_ )
 }
 
 // Hilight edges in image
-void Magick::Image::edge ( const double radius_)
-{
-  ExceptionInfo exceptionInfo;
-  GetExceptionInfo( &exceptionInfo );
-  MagickCore::Image* newImage =
-    EdgeImage( image(), radius_, 1.0, &exceptionInfo );
-  replaceImage( newImage );
-  throwException( exceptionInfo );
-  (void) DestroyExceptionInfo( &exceptionInfo );
-}
 void Magick::Image::edge ( const double radius_, const double sigma_ )
 {
   ExceptionInfo exceptionInfo;
index dd0397c36b871421d26af1ba99cb380b09c4743d..a277ad37db466ef5d939295ef07f8101b6e39b0c 100644 (file)
@@ -283,7 +283,6 @@ namespace Magick
     void            draw ( const std::list<Magick::Drawable> &drawable_ );
     
     // Edge image (hilight edges in image)
-    void            edge ( const double radius_ = 0.0 );
     void            edge ( const double radius_ = 0.0,
                            const double sigma_ = 1.0);