}
// 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;
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);