参考 其他函数 - Sc-Softs/CornerstoneSDK GitHub Wiki
get_retcode
inline std::int32_t get_retcode(std::string retstr) { ... }
参数 |
|
retstr |
API 返回的 JSON 文本 |
sum_string
template <class... Types>
inline std::string sum_string(Types... args) { ... }
make_color
constexpr std::uint32_t make_color(std::uint8_t r, std::uint8_t g, std::uint8_t b) { ... }
参数 |
|
r |
R 颜色分量 |
g |
G 颜色分量 |
b |
B 颜色分量 |
read_color
constexpr void read_color(std::uint32_t color, std::uint8_t &r, std::uint8_t &g, std::uint8_t &b) { ... }
参数 |
|
color |
待转换的颜色值 |
r |
R 颜色分量(传出) |
g |
G 颜色分量(传出) |
b |
B 颜色分量(传出) |