#include "graphic/graphic_basic.h" #include "atom/atom_basic.h" #include "utils/string_utils.h" microtex::color microtex::decodeColor(const std::string& s) { if (s[0] == '#') { const std::string x = s.substr(1); color c = black; auto success = str2int(s.c_str() + 1, s.length() - 1, reinterpret_cast(c), 16); if (!success) { return black; } if (s.size() == 7) { // set alpha value c |= 0xff000000; } else if (s.size() != 9) { return black; } return c; } return black; } microtex::color microtex::getColor(const std::string& name) { return ColorAtom::getColor(name); } bool microtex::Point::operator==(const Point& other) const { return x == other.x && y == other.y; } bool microtex::Rect::operator==(const Rect& other) const { return x == other.x && y == other.y && w == other.w && h == other.h; } // clang-format off bool microtex::Stroke::operator==(const Stroke& other) const { return lineWidth == other.lineWidth && miterLimit == other.miterLimit && cap == other.cap && join == other.join; } // clang-format on