This commit is contained in:
cristy
2011-09-05 21:29:36 +00:00
parent 4c11c2b1fb
commit 71fc8bf48b
2 changed files with 0 additions and 11 deletions
-10
View 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;
-1
View 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);