CvxText.h 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. #pragma once
  2. #ifndef PUTTEXT_H_
  3. #define PUTTEXT_H_
  4. #include <string>
  5. #include <opencv2/opencv.hpp>
  6. using namespace std;
  7. void GetStringSize(HDC hDC, const char* str, int* w, int* h);
  8. void putTextZH(cv::Mat &dst, cv::Size & rSize, const char* str, cv::Point org, cv::Scalar color, int fontSize,
  9. const char *fn = "Arial", bool italic = false, bool underline = false);
  10. /// 数据收集卡 功能样式设计
  11. /********************************************************
  12. * @function : 获取字符串的画布上的宽度
  13. * @brief : brief
  14. * @input : str: 字符串
  15. * @input : fontSize: 信息区域字体大小
  16. * @input : ttBoxW: 填涂框宽度
  17. * @input : tiSl: 题号和题干的距离
  18. * @input : backPix: 每行的预留空间
  19. * @return :
  20. * @author : qqm 2022/08/31 19:42
  21. *********************************************************/
  22. int getLineStrWidth(string str, int fontSize, int ttBoxW, int tiSl, int backPix);
  23. /********************************************************
  24. * @function : 生成一张数据收集卡
  25. * @brief : brief
  26. * @input : cols: 栏数
  27. * @input : index: 关联ID
  28. * @input : fontSize: 信息区域字体大小
  29. * @input : linGrayPix: 横线的灰度值
  30. * @input : vecLines: 本张数据行
  31. * @input : engShow: 是否显示词性
  32. * @return :
  33. * @author : qqm 2022/08/31 19:42
  34. *********************************************************/
  35. int dataCollectionPaper(int cols, int index, int fontSize, int lineGrayPix, bool engShow, std::vector<std::string> & vecLines);
  36. #endif // PUTTEXT_H_