1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-07-05 17:48:38 +00:00
pdf2htmlEX/src/Color.h
2013-04-06 16:45:01 +08:00

33 lines
616 B
C++

/*
* Header file for Color
* Copyright (C) 2013 Lu Wang <coolwanglu@gmail.com>
*/
#ifndef COLOR_H__
#define COLOR_H__
#include <ostream>
#include <GfxState.h>
namespace pdf2htmlEX {
struct Color
{
bool transparent;
GfxRGB rgb;
bool operator == (const Color & c) const {
if(transparent != c.transparent)
return false;
if(transparent)
return true;
return ((rgb.r == c.rgb.r) && (rgb.g == c.rgb.g) && (rgb.b == c.rgb.b));
}
};
std::ostream & operator << (std::ostream & out, const Color & color);
} // namespace pdf2htmlEX
#endif // COLOR_H__