|
| | distortImage (const Magick::DistortImageMethod method_, const size_t number_arguments_, const double *arguments_, const bool bestfit_) |
| |
| | distortImage (const Magick::DistortImageMethod method_, const size_t number_arguments_, const double *arguments_) |
| |
| void | operator() (Image &image_) const |
| |
Definition at line 347 of file STL.h.
◆ distortImage() [1/2]
| Magick::distortImage::distortImage |
( |
const Magick::DistortImageMethod | method_, |
|
|
const size_t | number_arguments_, |
|
|
const double * | arguments_, |
|
|
const bool | bestfit_ ) |
Definition at line 300 of file STL.cpp.
304 : _method ( method_ ),
305 _number_arguments ( number_arguments_ ),
306 _arguments ( arguments_ ),
307 _bestfit( bestfit_ )
308{
309}
◆ distortImage() [2/2]
| Magick::distortImage::distortImage |
( |
const Magick::DistortImageMethod | method_, |
|
|
const size_t | number_arguments_, |
|
|
const double * | arguments_ ) |
Definition at line 310 of file STL.cpp.
313 : _method ( method_ ),
314 _number_arguments ( number_arguments_ ),
315 _arguments ( arguments_ ),
316 _bestfit( false )
317{
318}
◆ operator()()
| void Magick::distortImage::operator() |
( |
Magick::Image & | image_ | ) |
const |
Definition at line 319 of file STL.cpp.
320{
321 image_.distort( _method, _number_arguments, _arguments, _bestfit );
322}
◆ _arguments
| const double* Magick::distortImage::_arguments |
|
private |
◆ _bestfit
| bool Magick::distortImage::_bestfit |
|
private |
◆ _method
| DistortImageMethod Magick::distortImage::_method |
|
private |
◆ _number_arguments
| size_t Magick::distortImage::_number_arguments |
|
private |
The documentation for this class was generated from the following files:
- ImageMagick-6/Magick++/lib/Magick++/STL.h
- ImageMagick-6/Magick++/lib/STL.cpp