/************************************************************************* ** Color.h ** ** ** ** This file is part of dvisvgm -- the DVI to SVG converter ** ** Copyright (C) 2005-2013 Martin Gieseking ** ** ** ** This program is free software; you can redistribute it and/or ** ** modify it under the terms of the GNU General Public License as ** ** published by the Free Software Foundation; either version 3 of ** ** the License, or (at your option) any later version. ** ** ** ** This program is distributed in the hope that it will be useful, but ** ** WITHOUT ANY WARRANTY; without even the implied warranty of ** ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** ** GNU General Public License for more details. ** ** ** ** You should have received a copy of the GNU General Public License ** ** along with this program; if not, see . ** *************************************************************************/ #ifndef COLOR_H #define COLOR_H #include #include #include "types.h" #ifdef TRANSPARENT #undef TRANSPARENT #endif class Color { public: static const Color BLACK; static const Color WHITE; static const Color TRANSPARENT; public: Color () : _rgb(0) {} Color (UInt32 rgb) : _rgb(rgb) {} Color (UInt8 r, UInt8 g, UInt8 b) {set(r,g,b);} Color (float r, float g, float b) {set(r,g,b);} Color (const std::vector &rgb) {set(rgb[0], rgb[1], rgb[2]);} Color (const char *name); Color (const std::string &name); operator UInt32 () const {return _rgb;} bool operator == (const Color &c) {return _rgb == c._rgb;} bool operator != (const Color &c) {return _rgb != c._rgb;} void set (UInt8 r, UInt8 g, UInt8 b) {_rgb = (r << 16) | (g << 8) | b;} void set (float r, float g, float b); bool set (std::string name, bool case_sensitive=true); void setGray (UInt8 g) {set(g,g,g);} void setGray (float g) {set(g,g,g);} void setHSB (float h, float s, float b); void setCMYK (float c, float m, float y, float k); void getRGB (float &r, float &g, float &b) const; void operator *= (double c); std::string rgbString () const; static void CMYK2RGB (const std::vector &cmyk, std::vector &rgb); static void HSB2RGB (const std::vector &hsb, std::vector &rgb); private: UInt32 _rgb; }; #endif