ConsoleApplication/ImgUtil.cpp
@@ -675,17 +675,18 @@ if (startf > -1 && endf > -1) { //内容坐标 //LogUtil::debug("内容的高度为:%d \n", endf - startf); int* dd = (int*)malloc(sizeof(int) * 4); *dd = startf; *(dd + 1) = startCol; *(dd + 2) = endf; *(dd + 3) = endCol; //行数据高大于6才为有效的行高 if (endf - startf > 6) { //删除第一条数据 if (deleteEmpty) { int* dd = (int*)malloc(sizeof(int) * 4); *dd = startf; *(dd + 1) = startCol; *(dd + 2) = endf; *(dd + 3) = endCol; dataItemList.push_back(dd); } deleteEmpty = 1;