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

19 lines
286 B
C++

#include "Color.h"
#include "util/misc.h"
namespace pdf2htmlEX {
using std::ostream;
ostream & operator << (ostream & out, const Color & color)
{
if(color.transparent)
out << "transparent";
else
out << color.rgb;
return out;
}
} // namespace pdf2htmlEX