コード例 #1
0
ファイル: STL.cpp プロジェクト: anorland/ImageMagick
void Magick::floodFillTextureImage::operator()(Magick::Image &image_) const
{
  if (_borderColor.isValid())
    image_.floodFillTexture(_x,_y,_texture,_borderColor,_invert);
  else
    image_.floodFillTexture(_x,_y,_texture,_invert);
}
コード例 #2
0
ファイル: STL.cpp プロジェクト: 0xPr0xy/ImageMagick
void Magick::floodFillTextureImage::operator()( Magick::Image &image_ ) const
{
  if ( _borderColor.isValid() )
    {
      image_.floodFillTexture( _x, _y, _texture, _borderColor );
    }
  else
    {
      image_.floodFillTexture( _x, _y, _texture );
    }
}