CvxText.cpp 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320
  1. #include "pch.h"
  2. #include "CvxText.h"
  3. using namespace std;
  4. using namespace cv;
  5. void GetStringSize(HDC hDC, const char* str, int* w, int* h)
  6. {
  7. SIZE size;
  8. GetTextExtentPoint32A(hDC, str, strlen(str), &size);
  9. if (w != 0) *w = size.cx;
  10. if (h != 0) *h = size.cy;
  11. }
  12. void putTextZH(cv::Mat &dst, cv::Size & rSize, const char* str, Point org, Scalar color, int fontSize, const char* fn, bool italic, bool underline)
  13. {
  14. CV_Assert(dst.data != 0 && (dst.channels() == 1 || dst.channels() == 3));
  15. int x, y, r, b;
  16. if (org.x > dst.cols || org.y > dst.rows) return;
  17. x = org.x < 0 ? -org.x : 0;
  18. y = org.y < 0 ? -org.y : 0;
  19. LOGFONTA lf;
  20. lf.lfHeight = -fontSize;
  21. lf.lfWidth = 0;
  22. lf.lfEscapement = 0;
  23. lf.lfOrientation = 0;
  24. lf.lfWeight = 5;
  25. lf.lfItalic = italic; //斜体
  26. lf.lfUnderline = underline; //下划线
  27. lf.lfStrikeOut = 0;
  28. lf.lfCharSet = DEFAULT_CHARSET;
  29. lf.lfOutPrecision = 0;
  30. lf.lfClipPrecision = 0;
  31. lf.lfQuality = PROOF_QUALITY;
  32. lf.lfPitchAndFamily = 0;
  33. strcpy_s(lf.lfFaceName, fn);
  34. HFONT hf = CreateFontIndirectA(&lf);
  35. HDC hDC = CreateCompatibleDC(0);
  36. HFONT hOldFont = (HFONT)SelectObject(hDC, hf);
  37. int strBaseW = 0, strBaseH = 0;
  38. int singleRow = 0;
  39. char buf[1 << 12];
  40. strcpy_s(buf, str);
  41. char *bufT[1 << 12]; // 这个用于分隔字符串后剩余的字符,可能会超出。
  42. //处理多行
  43. {
  44. int nnh = 0;
  45. int cw, ch;
  46. const char* ln = strtok_s(buf, "\n", bufT);
  47. while (ln != 0)
  48. {
  49. GetStringSize(hDC, ln, &cw, &ch);
  50. strBaseW = max(strBaseW, cw);
  51. strBaseH = max(strBaseH, ch);
  52. ln = strtok_s(0, "\n", bufT);
  53. nnh++;
  54. }
  55. singleRow = strBaseH;
  56. strBaseH *= nnh;
  57. }
  58. rSize.width = strBaseW;
  59. rSize.height = strBaseH;
  60. if (org.x + strBaseW < 0 || org.y + strBaseH < 0)
  61. {
  62. SelectObject(hDC, hOldFont);
  63. DeleteObject(hf);
  64. DeleteObject(hDC);
  65. return;
  66. }
  67. r = org.x + strBaseW > dst.cols ? dst.cols - org.x - 1 : strBaseW - 1;
  68. b = org.y + strBaseH > dst.rows ? dst.rows - org.y - 1 : strBaseH - 1;
  69. org.x = org.x < 0 ? 0 : org.x;
  70. org.y = org.y < 0 ? 0 : org.y;
  71. BITMAPINFO bmp = { 0 };
  72. BITMAPINFOHEADER& bih = bmp.bmiHeader;
  73. int strDrawLineStep = strBaseW * 3 % 4 == 0 ? strBaseW * 3 : (strBaseW * 3 + 4 - ((strBaseW * 3) % 4));
  74. bih.biSize = sizeof(BITMAPINFOHEADER);
  75. bih.biWidth = strBaseW;
  76. bih.biHeight = strBaseH;
  77. bih.biPlanes = 1;
  78. bih.biBitCount = 24;
  79. bih.biCompression = BI_RGB;
  80. bih.biSizeImage = strBaseH * strDrawLineStep;
  81. bih.biClrUsed = 0;
  82. bih.biClrImportant = 0;
  83. void* pDibData = 0;
  84. HBITMAP hBmp = CreateDIBSection(hDC, &bmp, DIB_RGB_COLORS, &pDibData, 0, 0);
  85. CV_Assert(pDibData != 0);
  86. HBITMAP hOldBmp = (HBITMAP)SelectObject(hDC, hBmp);
  87. //color.val[2], color.val[1], color.val[0]
  88. SetTextColor(hDC, RGB(255, 255, 255));
  89. SetBkColor(hDC, 0);
  90. //SetStretchBltMode(hDC, COLORONCOLOR);
  91. strcpy_s(buf, str);
  92. const char* ln = strtok_s(buf, "\n", bufT);
  93. int outTextY = 0;
  94. while (ln != 0)
  95. {
  96. TextOutA(hDC, 0, outTextY, ln, strlen(ln));
  97. outTextY += singleRow;
  98. ln = strtok_s(0, "\n", bufT);
  99. }
  100. uchar* dstData = (uchar*)dst.data;
  101. int dstStep = dst.step / sizeof(dstData[0]);
  102. unsigned char* pImg = (unsigned char*)dst.data + org.x * dst.channels() + org.y * dstStep;
  103. unsigned char* pStr = (unsigned char*)pDibData + x * 3;
  104. for (int tty = y; tty <= b; ++tty)
  105. {
  106. unsigned char* subImg = pImg + (tty - y) * dstStep;
  107. unsigned char* subStr = pStr + (strBaseH - tty - 1) * strDrawLineStep;
  108. for (int ttx = x; ttx <= r; ++ttx)
  109. {
  110. for (int n = 0; n < dst.channels(); ++n) {
  111. double vtxt = subStr[n] / 255.0;
  112. int cvv = vtxt * color.val[n] + (1 - vtxt) * subImg[n];
  113. subImg[n] = cvv > 255 ? 255 : (cvv < 0 ? 0 : cvv);
  114. }
  115. subStr += 3;
  116. subImg += dst.channels();
  117. }
  118. }
  119. SelectObject(hDC, hOldBmp);
  120. SelectObject(hDC, hOldFont);
  121. DeleteObject(hf);
  122. DeleteObject(hBmp);
  123. DeleteDC(hDC);
  124. }
  125. ///////////////////////////// 数据收集卡 ///////////////////////////////////////
  126. // 获取字符串的画布上的宽度
  127. int getLineStrWidth(string str, int fontSize, int ttBoxW,int tiSl, int backPix) {
  128. int iw = str.length()*fontSize*0.5;
  129. iw += ttBoxW;
  130. iw += tiSl;
  131. iw += backPix;
  132. iw += fontSize * 1.5; // 题号的宽度 最多不超过1.5个字体宽度 56.
  133. return iw;
  134. }
  135. // 转码 utf-8 2 ansi
  136. static void UTF82ANSI(LPCSTR lpBuff, int nLen, char* pData, int iMaxLen)
  137. {
  138. ZeroMemory(pData, sizeof(char)*iMaxLen);
  139. int nCont = MultiByteToWideChar(CP_UTF8, 0, lpBuff, nLen, NULL, 0);
  140. WCHAR* szTemp = new WCHAR[nCont + 1];
  141. ZeroMemory(szTemp, sizeof(WCHAR)*(nCont + 1));
  142. MultiByteToWideChar(CP_UTF8, 0, lpBuff, nLen, szTemp, nCont);
  143. //获取缓冲区大小,并申请空间,缓冲区大小事按字节计算的
  144. int len = WideCharToMultiByte(CP_ACP, 0, szTemp, nCont, NULL, 0, NULL, NULL);
  145. if (len < iMaxLen) {
  146. WideCharToMultiByte(CP_ACP, 0, szTemp, nCont, pData, len, NULL, NULL);
  147. }
  148. else {
  149. char* buffer = new char[len + 1];
  150. //宽字节编码转换成多字节编码
  151. WideCharToMultiByte(CP_ACP, 0, szTemp, nCont, buffer, len, NULL, NULL);
  152. buffer[len] = '\0';
  153. //删除缓冲区并返回值
  154. strncpy(pData, buffer, iMaxLen - 1);
  155. delete[] buffer;
  156. buffer = NULL;
  157. }
  158. delete[]szTemp;
  159. szTemp = NULL;
  160. }
  161. // 二进制码生成获取
  162. void createBinString(Mat & img, int pageNum, int ptw, int pth, cv::Point ptStart) {
  163. vector<int> vecBinStr; vecBinStr.resize(12);
  164. for (size_t i = 11; i > 0; i--) {
  165. int ys = pageNum % 2;
  166. vecBinStr[i] = ys;
  167. pageNum = pageNum / 2;
  168. }
  169. vector<cv::Rect> vecBoxPages; vecBoxPages.resize(12);
  170. int ptPgW = ptw / 2; int ptPgH = pth / 2;
  171. for (int j = 0; j < 3; j++) {
  172. int _startY = ptStart.y + 15 + 50 * j;
  173. for (int i = 0; i < 4; i++) {
  174. int _startX = ptStart.x + 18 + i * 72;
  175. vecBoxPages.push_back(cv::Rect(_startX, _startY, ptPgW, ptPgH));
  176. if (vecBinStr[j * 4 + i])
  177. rectangle(img, vecBoxPages[vecBoxPages.size() - 1], cv::Scalar(0), -1);
  178. else
  179. rectangle(img, vecBoxPages[vecBoxPages.size() - 1], cv::Scalar(200, 200, 200), 2, 8, 0);
  180. }
  181. }
  182. return;
  183. }
  184. int dataCollectionPaper(int cols, int index,int fontSize, int lineGrayPix, bool engShow, std::vector<string> & vecLines) {
  185. /* 这里要做一些栏数 和 vecLines的对应值确认 */
  186. if (2 == cols && 14*2 == vecLines.size())
  187. ; // ok
  188. if (3 == cols && 14*3 == vecLines.size())
  189. ; // ok
  190. if (4 == cols && 14*4 == vecLines.size())
  191. ; // ok
  192. // 生成画布图像
  193. cv::Mat img(cv::Size(1654, 2344), CV_8UC3, cv::Scalar(255, 255, 255));
  194. int ptw = 80; int pth = 40;
  195. cv::Size fSize(0, 0);
  196. int leftPos = 100, rightPos = 1450;
  197. int topPos = 90;
  198. int fontW = rightPos - leftPos + ptw;
  199. vector<cv::Rect> vecPts = {
  200. cv::Rect(100,90,ptw,pth),
  201. cv::Rect(580,90,ptw,pth),
  202. cv::Rect(1450,90,ptw,pth),
  203. cv::Rect(100,2176,ptw,pth),
  204. cv::Rect(1450,2176,ptw,pth),
  205. };
  206. // 画定位点
  207. for (size_t i = 0; i < vecPts.size(); i++)
  208. {
  209. rectangle(img, vecPts[i], cv::Scalar(0, 0, 0), -1);
  210. }
  211. // 画示例框
  212. topPos += pth; topPos += 30;
  213. rectangle(img, cv::Rect(leftPos, topPos, fontW, 200), cv::Scalar(0, 0, 0), 2, 8, 0);
  214. // 画页码框
  215. cv::Rect boxPageNumber(leftPos + fontW - 300, topPos, 300, 200);
  216. rectangle(img, boxPageNumber, cv::Scalar(0, 0, 0), 2, 8, 0);
  217. // 生成二进制码流
  218. /* 二进制码流的坐标在下面函数里面实现,需要用书写获取 */
  219. createBinString(img, index, ptw, pth, cv::Point(boxPageNumber.x, boxPageNumber.y));
  220. string strPageNumInfo = "关联ID: " + to_string(index);
  221. putTextZH(img, fSize, strPageNumInfo.c_str(), cv::Point(boxPageNumber.x + 100, boxPageNumber.y + 50 * 2 + 20 + 15 + 15 + 15), Scalar(0), 20, "宋体");
  222. // 画警示信息
  223. string strMesInfo = "1、请在每题下方的横线上书写本题的内容!\
  224. \n\n2、题号不需要书写,标点符号需要原样书写。☆\
  225. \n\n3、如果本题书写有误,进行了涂抹修改等操作,请将题号前矩形框用任意笔进行填涂!☆☆\n";
  226. putTextZH(img, fSize, strMesInfo.c_str(), cv::Point(leftPos + 20, topPos + 20), Scalar(0), 25, "宋体");
  227. int lineTop1 = topPos + 20 + fSize.height + 20;
  228. cv::line(img, cv::Point(leftPos, lineTop1), cv::Point(rightPos + ptw - 300, topPos + 20 + fSize.height + 20), Scalar(0), 2, 8, 0);
  229. // 正确示例
  230. string strEgInfo = "正\n确\n示\n例";
  231. putTextZH(img, fSize, strEgInfo.c_str(), cv::Point(leftPos + 20, topPos + 20 + fSize.height + 20 + 3), Scalar(0), 20, "宋体");
  232. cv::line(img, cv::Point(leftPos + 20 + fSize.width + 10, lineTop1), cv::Point(leftPos + 20 + fSize.width + 10, topPos + 200), Scalar(0, 0, 0), 2, 8, 0);
  233. // 贴图区域
  234. /* 暂不实现 */
  235. topPos += 200;
  236. // 文字区域
  237. static int maxLineNum = 14; // 最大行数14
  238. static int colWidth = fontW / cols; // 单栏的宽度
  239. static int ttBoxWidth = 30; // 填涂框的边长
  240. static int tiSl = 10; // 题号和题干见的距离
  241. static int lineDis = 20; // 两行之间的距离
  242. fSize.width = 0; fSize.height = 0;
  243. for (int col = 0; col < cols; col++)
  244. { // 逐栏画题
  245. int colTopPos = topPos;
  246. int colLeftPos = leftPos + col * colWidth;
  247. for (size_t i = 0; i < maxLineNum; i++)
  248. {
  249. colTopPos += lineDis;
  250. int lineLen = ttBoxWidth + tiSl;
  251. // 画填涂框 30*30 大小
  252. rectangle(img, cv::Rect(colLeftPos, colTopPos, ttBoxWidth, ttBoxWidth), cv::Scalar(0), 1, 8, 0);
  253. int iQNum = i+1 + col * maxLineNum;
  254. string strStinfo = to_string(iQNum); strStinfo += ".";
  255. putTextZH(img, fSize, strStinfo.c_str(), cv::Point(colLeftPos + ttBoxWidth + tiSl, colTopPos), Scalar(0, 0, 0), fontSize, "宋体"); // 跟填涂框保持10px距离
  256. lineLen += fSize.width;
  257. strStinfo.clear();
  258. size_t vecIndex = i + col * maxLineNum;
  259. string strTgInfo = vecLines[vecIndex];
  260. if (!engShow)
  261. ; /* 移除词性 */
  262. char szTemp[2048];
  263. memset(szTemp, 0, sizeof(char)*(2048));
  264. UTF82ANSI(strTgInfo.c_str(), strTgInfo.length(), szTemp, 2048);
  265. strTgInfo = szTemp;
  266. putTextZH(img, fSize, strTgInfo.c_str(), cv::Point(colLeftPos + ttBoxWidth + tiSl + fSize.width , colTopPos), Scalar(0, 0, 0), fontSize, "宋体"); // 跟填涂框保持10px距离
  267. lineLen += fSize.width;
  268. colTopPos = colTopPos + fSize.height * 3.5; //两行之间两倍的距离用于书写
  269. line(img, cv::Point(colLeftPos+30, colTopPos), cv::Point(colLeftPos + lineLen, colTopPos), Scalar(lineGrayPix, lineGrayPix, lineGrayPix), 1, 8, 0);
  270. }
  271. }
  272. cv::imwrite(R"(G:\英译汉手写识别\数据收集\template-2.png)", img);
  273. cv::namedWindow("fuck", 1);
  274. cv::imshow("fuck", img);
  275. cv::waitKey(0);
  276. return 0;
  277. }