Definition at line 121 of file Montage.h.
◆ MontageFramed()
| Magick::MontageFramed::MontageFramed |
( |
void | | ) |
|
Definition at line 93 of file Montage.cpp.
94 : _borderColor("#dfdfdf"),
95 _borderWidth(0),
96 _frame(),
97 _matteColor("#bdbdbd")
98{
99}
◆ ~MontageFramed()
| Magick::MontageFramed::~MontageFramed |
( |
void | | ) |
|
◆ borderColor() [1/2]
| void Magick::MontageFramed::borderColor |
( |
const Color & | borderColor_ | ) |
|
|
inline |
Definition at line 333 of file Montage.h.
334{
335 _borderColor=borderColor_;
336}
◆ borderColor() [2/2]
Definition at line 338 of file Montage.h.
339{
340 return(_borderColor);
341}
◆ borderWidth() [1/2]
| void Magick::MontageFramed::borderWidth |
( |
size_t | borderWidth_ | ) |
|
|
inline |
Definition at line 343 of file Montage.h.
344{
345 _borderWidth=borderWidth_;
346}
◆ borderWidth() [2/2]
| size_t Magick::MontageFramed::borderWidth |
( |
void | | ) |
const |
|
inline |
Definition at line 348 of file Montage.h.
349{
350 return(_borderWidth);
351}
◆ frameGeometry() [1/2]
| void Magick::MontageFramed::frameGeometry |
( |
const Geometry & | frame_ | ) |
|
|
inline |
Definition at line 353 of file Montage.h.
354{
355 _frame=frame_;
356}
◆ frameGeometry() [2/2]
Definition at line 358 of file Montage.h.
359{
360 return(_frame);
361}
◆ matteColor() [1/2]
| void Magick::MontageFramed::matteColor |
( |
const Color & | matteColor_ | ) |
|
|
inline |
Definition at line 363 of file Montage.h.
364{
365 _matteColor=matteColor_;
366}
◆ matteColor() [2/2]
Definition at line 368 of file Montage.h.
369{
370 return(_matteColor);
371}
◆ updateMontageInfo()
| void Magick::MontageFramed::updateMontageInfo |
( |
MagickCore::MontageInfo & | montageInfo_ | ) |
const |
|
virtual |
Reimplemented from Magick::Montage.
Definition at line 105 of file Montage.cpp.
106{
107
108 Montage::updateMontageInfo(montageInfo_);
109
110
111 montageInfo_.border_color=_borderColor;
112
113 montageInfo_.border_width=_borderWidth;
114
115 if (_frame.isValid())
116 Magick::CloneString(&montageInfo_.frame,_frame);
117
118 montageInfo_.matte_color=_matteColor;
119}
◆ _borderColor
| Color Magick::MontageFramed::_borderColor |
|
private |
◆ _borderWidth
| size_t Magick::MontageFramed::_borderWidth |
|
private |
◆ _frame
◆ _matteColor
| Color Magick::MontageFramed::_matteColor |
|
private |
The documentation for this class was generated from the following files: