Definition at line 469 of file Drawable.h.
◆ DrawableBorderColor() [1/2]
| Magick::DrawableBorderColor::DrawableBorderColor |
( |
const Color & | color_ | ) |
|
Definition at line 275 of file Drawable.cpp.
276 : _color(color_)
277{
278}
◆ DrawableBorderColor() [2/2]
| Magick::DrawableBorderColor::DrawableBorderColor |
( |
const DrawableBorderColor & | original_ | ) |
|
Definition at line 280 of file Drawable.cpp.
282 : DrawableBase(original_),
283 _color(original_._color)
284{
285}
◆ ~DrawableBorderColor()
| Magick::DrawableBorderColor::~DrawableBorderColor |
( |
void | | ) |
|
◆ color() [1/2]
| void Magick::DrawableBorderColor::color |
( |
const Color & | color_ | ) |
|
◆ color() [2/2]
◆ copy()
◆ operator()()
| void Magick::DrawableBorderColor::operator() |
( |
MagickCore::DrawingWand * | context_ | ) |
const |
|
virtual |
Reimplemented from Magick::DrawableBase.
Definition at line 291 of file Drawable.cpp.
293{
294 PixelInfo
295 color;
296
297 PixelWand
298 *pixel_wand;
299
300 color=static_cast<PixelInfo>(_color);
301 pixel_wand=NewPixelWand();
302 PixelSetPixelColor(pixel_wand,&color);
303 DrawSetBorderColor(context_,pixel_wand);
304 pixel_wand=DestroyPixelWand(pixel_wand);
305}
◆ _color
| Color Magick::DrawableBorderColor::_color |
|
private |
The documentation for this class was generated from the following files:
- /home/cristy/Attic/Build/ImageMagick-7.1.2/rpmbuild/BUILD/ImageMagick-7.1.2-build/ImageMagick-7.1.2-32/Magick++/lib/Magick++/Drawable.h
- /home/cristy/Attic/Build/ImageMagick-7.1.2/rpmbuild/BUILD/ImageMagick-7.1.2-build/ImageMagick-7.1.2-32/Magick++/lib/Drawable.cpp