参考 其他函数 - Sc-Softs/CornerstoneSDK GitHub Wiki

get_retcode

  • 获取 API 返回的 JSON 文本中的返回码
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

  • 将 RGB 颜色分量转换为易语言的颜色值
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

  • 将易语言的颜色值转换为 RGB 颜色分量
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 颜色分量(传出)