60 friend auto operator <<(std::ostream& os,
const cmyk& value) -> std::ostream& {
61 return os <<
xtd::string::format(
"cmyk [cyan = {}, magenta = {}, yellow = {}, black = {}]", value.cyan, value.magenta, value.black);
float single
Represents a single-precision floating-point number.
Definition single.hpp:23
The xtd::drawing namespace provides access to GDI+ basic graphics functionality. More advanced functi...
Definition actions_system_images.hpp:10
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition abstract_object.hpp:8
The cmyk struct.
Definition cmyk.hpp:22
static auto from_cmyk(const cmyk &value) noexcept -> xtd::drawing::cmyk
Creates a xtd::cmyk struct from the specified axtd::drawing::cmyk value.
Definition cmyk.hpp:54
static auto from_cmyk(xtd::single cyan, xtd::single magenta, xtd::single yellow, xtd::single black) noexcept -> xtd::drawing::cmyk
Creates a xtd::cmyk struct from the specified cyan, magenta, and yellow single values.
Definition cmyk.hpp:48
xtd::single yellow
Gets or sets the yellow component value of this xtd::drawing::cmyk struct.
Definition cmyk.hpp:34
xtd::single magenta
Gets or sets the magenta component value of this xtd::drawing::cmyk struct.
Definition cmyk.hpp:31
xtd::single cyan
Gets or sets the cyan component value of this xtd::drawing::cmyk struct.
Definition cmyk.hpp:28
xtd::single black
Gets or sets the black component value of this xtd::drawing::cmyk struct.
Definition cmyk.hpp:37