|
|
| ColorMono (PixelPacket *rep_, PixelType pixelType_) |
| | Color (PixelPacket *rep_, PixelType pixelType_) |
| void | pixel (PixelPacket *rep_, PixelType pixelType_) |
Definition at line 260 of file Color.h.
◆ ColorMono() [1/3]
| Magick::ColorMono::ColorMono |
( |
void | | ) |
|
◆ ColorMono() [2/3]
| Magick::ColorMono::ColorMono |
( |
bool | mono_ | ) |
|
Definition at line 488 of file Color.cpp.
489 : Color((mono_ ? QuantumRange : 0),
490 (mono_ ? QuantumRange : 0),
491 (mono_ ? QuantumRange : 0))
492{
493 alphaQuantum(OpaqueOpacity);
494}
◆ ColorMono() [3/3]
| Magick::ColorMono::ColorMono |
( |
const Color & | color_ | ) |
|
Definition at line 496 of file Color.cpp.
497 : Color(color_)
498{
499}
◆ ~ColorMono()
| Magick::ColorMono::~ColorMono |
( |
| ) |
|
◆ mono() [1/2]
| void Magick::ColorMono::mono |
( |
bool | mono_ | ) |
|
Definition at line 511 of file Color.cpp.
512{
513 redQuantum(mono_ ? QuantumRange : 0);
514 greenQuantum(mono_ ? QuantumRange : 0);
515 blueQuantum(mono_ ? QuantumRange : 0);
516}
◆ mono() [2/2]
| bool Magick::ColorMono::mono |
( |
void | | ) |
const |
Definition at line 518 of file Color.cpp.
519{
520 return(greenQuantum() == 0);
521}
◆ operator=()
Definition at line 505 of file Color.cpp.
506{
507 *static_cast<Magick::Color*>(this)=color_;
508 return(*this);
509}
The documentation for this class was generated from the following files:
- ImageMagick-6/Magick++/lib/Magick++/Color.h
- ImageMagick-6/Magick++/lib/Color.cpp