找回密码
 立即注册
首页 业界区 业界 从DEM到等高线:手撕矢量与栅格两种地形表达 ...

从DEM到等高线:手撕矢量与栅格两种地形表达

谷江雪 2026-1-22 21:45:01
本文节选自新书《GIS基础原理与技术实践》第6章。很多人会用 gdal_contour 一键生成等高线,但你知道它背后是如何通过三角网或格网 DEM 计算交线的吗?本文带你从零实现矢量等高线提取与栅格分层设色图生成,真正理解地形表达的本质。
1.jpeg

6.6 等高线地形图

地形的表达除了前文介绍的基于栅格形式的格网DEM和基于矢量形式的不规则三角网DEM之外,还有一种表达方式:等高线地形图,简称等高线图。等高线图的历史非常悠久,是一种非常经典的地形表达方式,在高中地理中就有详细的介绍和考察(有趣的是在国内的课程设置中,高中地理属于文科,本科的地理信息系统却属于理科,相信在进入大学后才接触到等高线图的人不止笔者一个)。
6.6.1 等高线图的基础理解

所谓等高线,就是把地面上海拔高度相等的点相连,垂直投影到水平面上,并按照一定的比例缩放绘制到图纸所得到的闭合曲线。如果我们按照一定高度差(等高距),从低到高依次绘制等高线,就得到了一张等高线图。如下图6.15所示:
2.png

等高线图虽然有不易识别的特点,但是其最大的优点就在于通过较少的信息量,就能够轻易识别出多种地形地貌,从而帮助我们做出地理空间相关的决策。一些典型的地貌包括:
1. 陡坡和缓坡

等高线密集的地方,坡度较陡,如图6.16(1)所示。而图6.16(2)所示的坡度较缓,因为其等高线较为稀疏,坡度较缓。如果我们进行爬山活动,应选择等高线稀疏的地方。
3.png

2. 山头和洼地

下图6.17中等高线(a)表示山头,等高线(b)为表示洼地,它们投影到平面上都是简单的闭合多边形曲线。两者的区别在于山头的内圈高程大于外圈,而洼地则相反。
4.png

3. 山脊、山谷和鞍部

山脊位于等高线弯曲的地方,其高程值沿着凸向从高到底,如下图6.18(a)所示。山谷则相反,等高线弯曲处从高程值低往高程值高的地方凸出,如下图6.18(b)所示。山脊弯曲处相连的线被称为山脊线,附近雨水在降落到这条线上时会分别流向山脊的两侧,因此山脊线被称为分水线。山谷弯曲处相连的线被称为山谷线,雨水会从两侧上坡流向谷底,容易发育河流,因此山谷线被称为集水线。分水线、集水线是土木工程中需要重点关注的问题。
鞍部是位于两个山头之间呈马鞍形的低凹部位,如下图6.18所示。鞍部是修建山区道路的关节点,可以考虑在鞍部修建越岭道路。
5.png

4. 绝壁和悬崖

绝壁是坡度在70°以上的陡峭崖壁,此时多条等高线的一部分会重叠,将这部分用锯齿状的符号表示绝壁,如下图6.19(a)所示。悬崖是上部突出,下部凹进的绝壁,这种地貌的等高线出现相交。这时隐蔽的等高线用虚线表示,如下图6.19(c)所示。
6.png

等高线图的另一个特点的是其并不完全是定性的,由于每一条等高线都会标注高程信息,很多情况下可以进行大致定量运算,比如估算等高线图中两个点的相对高差、坡度等。所以等高线图确实是一种非常简洁有力的地形表达,应用非常广泛。
6.6.2 等高线地形图矢量形式

正如图6.16~图6.19所示,最为简洁的等高线图是基于要素特征的,是由一组闭合的曲线组成的。因此不难想象,为了从DEM中生成矢量形式的等高线地形图,关键在于使用DEM的空间要素进行立体几何计算。其实在GDAL自带的工具中已经有提取等高线图的工具,但是正如前面笔者所说,结果并不重要,重要的是其中的原理。这里笔者自己的实现如下例6.10所示。
  1. //例6.10 生成等高线图的矢量形式
  2. #include <gdal_priv.h>
  3. #include <ogrsf_frmts.h>
  4. #include <Eigen/Eigen>
  5. #include <fstream>
  6. #include <iostream>
  7. #include <sstream>
  8. using namespace std;
  9. using namespace Eigen;
  10. struct TrigonVertexIndex {
  11.   size_t index[3];
  12. };
  13. double startHeight = 550;
  14. double endHeight = 2815;
  15. double heightInterval = 500;
  16. size_t nV;                                       //点的个数
  17. std::vector<Vector3d> vertexXyz;                 //点集
  18. size_t nF;                                       //面的个数.
  19. std::vector<TrigonVertexIndex> faceVertexIndex;  //面在点集中的序号
  20. //根据空截断字符串
  21. void ChopStringWithSpace(string line, vector<string>& substring) {
  22.   std::stringstream linestream(line);
  23.   string sub;
  24.   while (linestream >> sub) {
  25.     substring.push_back(sub);
  26.   }
  27. }
  28. bool ReadTin(const char* szModelPath) {
  29.   ifstream infile(szModelPath, ios::binary);
  30.   if (!infile) {
  31.     printf("Can't Load %s\n", szModelPath);
  32.     return false;
  33.   }
  34.   string line;
  35.   while (line != string("end_header")) {
  36.     getline(infile, line);
  37.     vector<string> substring;
  38.     ChopStringWithSpace(line, substring);
  39.     if (substring.size() == 3 && substring[0] == "element") {
  40.       if (substring[1] == "vertex") {
  41.         nV = stoul(substring[2]);
  42.       } else if (substring[1] == "face") {
  43.         nF = stoul(substring[2]);
  44.       }
  45.     }
  46.   }
  47.   vertexXyz.resize(nV);
  48.   vertexXyz.shrink_to_fit();
  49.   uint8_t propertyNum = 3;
  50.   double* vertexTmp = new double[propertyNum * nV];
  51.   infile.read((char*)(vertexTmp),
  52.               static_cast<int64_t>(propertyNum * nV * sizeof(double)));
  53.   for (size_t i = 0; i < nV; i++) {
  54.     vertexXyz[i].x() = vertexTmp[i * propertyNum];
  55.     vertexXyz[i].y() = vertexTmp[i * propertyNum + 1];
  56.     vertexXyz[i].z() = vertexTmp[i * propertyNum + 2];
  57.   }
  58.   delete[] vertexTmp;
  59.   vertexTmp = nullptr;
  60.   faceVertexIndex.resize(nF);
  61.   faceVertexIndex.shrink_to_fit();
  62.   for (size_t i = 0; i < nF; i++) {
  63.     uint8_t type;
  64.     infile.read((char*)(&type), 1);
  65.     if (type != 3) {
  66.       printf("Format Incompatible Or Non Trigon!\n");
  67.       return false;
  68.     }
  69.     for (unsigned int j = 0; j < type; j++) {
  70.       int id;
  71.       infile.read((char*)(&id), sizeof(int));
  72.       faceVertexIndex[i].index[j] = static_cast<size_t>(id);
  73.     }
  74.   }
  75.   infile.close();
  76.   return true;
  77. }
  78. //判断几种可能的相交情况
  79. int CalTriangleType(TrigonVertexIndex trigonVID,
  80.                     std::vector<bool>& vertexFlag) {
  81.   bool triVertexFlag[3] = {false, false, false};
  82.   for (int vi = 0; vi < 3; vi++) {
  83.     size_t vid = trigonVID.index[vi];
  84.     triVertexFlag[vi] = vertexFlag[vid];
  85.   }
  86.   int type = 0;
  87.   if (!triVertexFlag[0] && !triVertexFlag[1] && !triVertexFlag[2]) {
  88.     type = 0;
  89.   } else if (!triVertexFlag[0] && !triVertexFlag[1] && triVertexFlag[2]) {
  90.     type = 1;
  91.   } else if (triVertexFlag[0] && !triVertexFlag[1] && !triVertexFlag[2]) {
  92.     type = 2;
  93.   } else if (!triVertexFlag[0] && triVertexFlag[1] && !triVertexFlag[2]) {
  94.     type = 3;
  95.   } else if (triVertexFlag[0] && triVertexFlag[1] && triVertexFlag[2]) {
  96.     type = 4;
  97.   } else if (triVertexFlag[0] && triVertexFlag[1] && !triVertexFlag[2]) {
  98.     type = 5;
  99.   } else if (!triVertexFlag[0] && triVertexFlag[1] && triVertexFlag[2]) {
  100.     type = 6;
  101.   } else if (triVertexFlag[0] && !triVertexFlag[1] && triVertexFlag[2]) {
  102.     type = 7;
  103.   }
  104.   return type;
  105. }
  106. //计算空间线段已知Z值的点的坐标
  107. bool CalPointOfSegmentLineWithZ(Vector3d O, Vector3d E, double z, Vector3d& P) {
  108.   if (E.z() < O.z()) {
  109.     Vector3d tmp = O;
  110.     O = E;
  111.     E = tmp;
  112.   }
  113.   double t = (z - O.z()) / (E.z() - O.z());
  114.   if (t < 0 && t > 1) {
  115.     return false;
  116.   }
  117.   Vector3d D = E - O;
  118.   P = O + D * t;
  119.   return true;
  120. }
  121. //计算空间中三角形与直线相交
  122. void CalTriangleIntersectingLine(TrigonVertexIndex trigonVID, int cornerId,
  123.                                  Vector3d& start, Vector3d& end, double z) {
  124.   vector<Vector3d> xyzList(3);
  125.   for (size_t vi = 0; vi < 3; vi++) {
  126.     size_t vid = trigonVID.index[vi];
  127.     xyzList[vi] = vertexXyz[vid];
  128.   }
  129.   if (cornerId == 0) {
  130.     CalPointOfSegmentLineWithZ(xyzList[0], xyzList[1], z, start);
  131.     CalPointOfSegmentLineWithZ(xyzList[0], xyzList[2], z, end);
  132.   } else if (cornerId == 1) {
  133.     CalPointOfSegmentLineWithZ(xyzList[1], xyzList[0], z, start);
  134.     CalPointOfSegmentLineWithZ(xyzList[1], xyzList[2], z, end);
  135.   } else if (cornerId == 2) {
  136.     CalPointOfSegmentLineWithZ(xyzList[2], xyzList[1], z, start);
  137.     CalPointOfSegmentLineWithZ(xyzList[2], xyzList[0], z, end);
  138.   }
  139. }
  140. bool CalIsoHeightLine(TrigonVertexIndex trigonVID, int type, Vector3d& start,Vector3d& end, double height) {
  141.   bool flag = false;
  142.   switch (type) {
  143.     case 1:
  144.     case 5: {
  145.       CalTriangleIntersectingLine(trigonVID, 2, start, end, height);
  146.       flag = true;
  147.       break;
  148.     }
  149.     case 2:
  150.     case 6: {
  151.       CalTriangleIntersectingLine(trigonVID, 0, start, end, height);
  152.       flag = true;
  153.       break;
  154.     }
  155.     case 3:
  156.     case 7: {
  157.       CalTriangleIntersectingLine(trigonVID, 1, start, end, height);
  158.       flag = true;
  159.       break;
  160.     }
  161.     case 0:
  162.     case 4:
  163.     default:
  164.       break;
  165.   }
  166.   return flag;
  167. }
  168. int main() {
  169.   GDALAllRegister();  // GDAL所有操作都需要先注册格式
  170.   vector<double> heightThresholdList;
  171.   {
  172.     double heightThreshold = startHeight;
  173.     while (heightThreshold < endHeight) {
  174.       heightThresholdList.push_back(heightThreshold);
  175.       heightThreshold = heightThreshold + heightInterval;
  176.     }
  177.   }
  178.   string workDir = getenv("GISBasic");
  179.   string outShpFile = workDir + "/../Data/Terrain/dst.shp";
  180.   string tinPath = workDir + "/../Data/Terrain/terrain.ply";
  181.   if (!ReadTin(tinPath.c_str())) {
  182.     return 1;
  183.   }
  184.   //创建
  185.   GDALDriver* driver =
  186.       GetGDALDriverManager()->GetDriverByName("ESRI Shapefile");
  187.   if (!driver) {
  188.     printf("Get Driver ESRI Shapefile Error!\n");
  189.     return 1;
  190.   }
  191.   GDALDataset* dataset =
  192.       driver->Create(outShpFile.c_str(), 0, 0, 0, GDT_Unknown, nullptr);
  193.   OGRLayer* poLayer = dataset->CreateLayer("IsoHeightline", nullptr,
  194.                                            wkbMultiLineStringZM, nullptr);
  195.   OGRFeature* poFeature = new OGRFeature(poLayer->GetLayerDefn());
  196.   OGRMultiLineString multiLineString;
  197.   for (size_t i = 0; i < heightThresholdList.size(); i++) {
  198.     double heightThreshold = heightThresholdList[i];
  199.     std::vector<bool> vertexFlag(vertexXyz.size(), false);
  200.     for (size_t i = 0; i < vertexXyz.size(); i++) {
  201.       if (vertexXyz[i].z() >= heightThreshold) {
  202.         vertexFlag[i] = true;
  203.       }
  204.     }
  205.     for (size_t fi = 0; fi < faceVertexIndex.size(); fi++) {
  206.       int type = CalTriangleType(faceVertexIndex[fi], vertexFlag);
  207.       Vector3d start;
  208.       Vector3d end;
  209.       if (CalIsoHeightLine(faceVertexIndex[fi], type, start, end,
  210.                            heightThreshold)) {
  211.         OGRLinearRing ogrring;
  212.         ogrring.setPoint(0, start.x(), start.y(), start.z());
  213.         ogrring.setPoint(1, end.x(), end.y(), end.z());
  214.         multiLineString.addGeometry(&ogrring);
  215.       }
  216.     }
  217.   }
  218.   poFeature->SetGeometry(&multiLineString);
  219.   if (poLayer->CreateFeature(poFeature) != OGRERR_NONE) {
  220.     printf("Failed to create feature in shapefile.\n");
  221.     return 1;
  222.   }
  223.   //释放
  224.   GDALClose(dataset);
  225.   dataset = nullptr;
  226.   return 0;
  227. }
复制代码
在本例中笔者使用的DEM是不规则三角网形式的DEM,不过如果使用规则格网也差不多,都需要先获取一组立体空间三角形。要获取等高线,我们可以设想某一固定的高程面与这一组立体空间三角形相交,那么必然可以得到相交的线段,这个线段也就是等高线上的线段。
某一固定的高程面与这一组立体空间三角形相交的算法也不是使用计算几何算法硬算,其实原理非常简单,如果高程面与立体空间三角形相交,那么空间三角形就会有一个角或者两个角在高程面上方。换句话说,高程面与立体空间三角形相交,比如有一个角在高程面上方,或者在高程面下方。只要求取这个角,就可以获取到两条相交的三角形边。最后,求两个相交的三角形边上固定高程的点,将两点相连就是等高线上的线段。
其实上述原理也体现了笔者在前面的论述,DEM其实只是个2.5维的数据,这里确实也没有用到真正意义上的三维立体空间运算,而是很快根据高度值做出高程面与立体空间三角形相交的判定。这种降维的思想在GIS中是非常有用的,我们应该充分利用它。最后得到的结果如下图6.20所示:
7.jpeg

6.6.3 等高线地形图栅格形式

等高线地形图的矢量形式虽然比较简洁,但是确实不够直观。我们可以仿照热力图的表达,将其栅格化,并根据不同的高度区间赋予不同的颜色,就得到了分层设色的等高线地形图。这种栅格形式的等高线地形图更为直接美观,我们可以很容易根据颜色区分那些地区属于平原、丘陵、盆地、高原或者山地,也方便直接输出图纸。
一个思路是将例6.10所得到的结果栅格化,不过这并不是最佳的方案。由于格网DEM数据本身就是栅格化的,我们可以直接在格网DEM上生成分层设色等高线地形图,如下例6.11所示:
  1. //例6.11 生成等高线图的栅格形式
  2. #include <gdal_priv.h>
  3. #include
  4. #include <iostream>
  5. #include <vector>
  6. using namespace std;
  7. using F_RGB = std::array<double, 3>;
  8. int demWidth;
  9. int demHeight;
  10. double geoTransform[6] = {0};
  11. double startX;  //左上角点坐标X
  12. double dx;      // X方向的分辨率
  13. double startY;  //左上角点坐标Y
  14. double dy;      // Y方向的分辨率
  15. vector<float> demBuf;
  16. int dstBandNum = 4;
  17. vector<uint8_t> dstBuf;
  18. double startHeight = 550;
  19. double endHeight = 2815;
  20. double heightInterval = 500;
  21. vector<F_RGB> tableRGB(256);         //颜色映射表
  22. vector<double> heightThresholdList;  //高度区间
  23. vector<F_RGB> heightRGBList;         //高度区间对应的颜色
  24. //生成渐变色
  25. void Gradient(F_RGB &start, F_RGB &end, vector<F_RGB> &RGBList) {
  26.   F_RGB d;
  27.   for (int i = 0; i < 3; i++) {
  28.     d[i] = (end[i] - start[i]) / RGBList.size();
  29.   }
  30.   for (size_t i = 0; i < RGBList.size(); i++) {
  31.     for (int j = 0; j < 3; j++) {
  32.       RGBList[i][j] = start[j] + d[j] * i;
  33.     }
  34.   }
  35. }
  36. //初始化颜色查找表
  37. void InitColorTable() {
  38.   F_RGB blue({17, 60, 235});   //蓝色
  39.   F_RGB green({17, 235, 86});  //绿色
  40.   vector<F_RGB> RGBList(60);
  41.   Gradient(blue, green, RGBList);
  42.   for (int i = 0; i < 60; i++) {
  43.     tableRGB[i] = RGBList[i];
  44.   }
  45.   F_RGB yellow({235, 173, 17});  //黄色
  46.   RGBList.clear();
  47.   RGBList.resize(60);
  48.   Gradient(green, yellow, RGBList);
  49.   for (int i = 0; i < 60; i++) {
  50.     tableRGB[i + 60] = RGBList[i];
  51.   }
  52.   F_RGB red({235, 60, 17});  //红色
  53.   RGBList.clear();
  54.   RGBList.resize(60);
  55.   Gradient(yellow, red, RGBList);
  56.   for (int i = 0; i < 60; i++) {
  57.     tableRGB[i + 120] = RGBList[i];
  58.   }
  59.   F_RGB white({235, 17, 235});  //紫色
  60.   RGBList.clear();
  61.   RGBList.resize(76);
  62.   Gradient(red, white, RGBList);
  63.   for (int i = 0; i < 76; i++) {
  64.     tableRGB[i + 180] = RGBList[i];
  65.   }
  66. }
  67. void ReadDem() {
  68.   string workDir = getenv("GISBasic");
  69.   string demPath = workDir + "/../Data/Terrain/dem.tif";
  70.   GDALDataset *dem = (GDALDataset *)GDALOpen(demPath.c_str(), GA_ReadOnly);
  71.   if (!dem) {
  72.     cout << "Can't Open Image!" << endl;
  73.     return;
  74.   }
  75.   demWidth = dem->GetRasterXSize();
  76.   demHeight = dem->GetRasterYSize();
  77.   dem->GetGeoTransform(geoTransform);
  78.   startX = geoTransform[0];  //左上角点坐标X
  79.   dx = geoTransform[1];      // X方向的分辨率
  80.   startY = geoTransform[3];  //左上角点坐标Y
  81.   dy = geoTransform[5];      // Y方向的分辨率
  82.   // noValue = dem->GetRasterBand(1)->GetNoDataValue();
  83.   size_t demBufNum = (size_t)demWidth * demHeight;
  84.   demBuf.resize(demBufNum, 0);
  85.   int depth = sizeof(float);
  86.   dem->GetRasterBand(1)->RasterIO(GF_Read, 0, 0, demWidth, demHeight,
  87.                                   demBuf.data(), demWidth, demHeight,
  88.                                   GDT_Float32, depth, demWidth * depth);
  89.   GDALClose(dem);
  90.   dem = nullptr;
  91. }
  92. void HandleDem() {
  93.   size_t dstBufNum = (size_t)demWidth * demHeight * dstBandNum;
  94.   dstBuf.resize(dstBufNum, 255);
  95.   for (size_t i = 0; i < heightThresholdList.size(); i++) {
  96.     double heightThreshold = heightThresholdList[i];
  97.     F_RGB thresholdRgb = heightRGBList[i];
  98.     for (int yi = 0; yi < demHeight; yi++) {
  99.       for (int xi = 0; xi < demWidth; xi++) {
  100.         size_t m = (size_t)demWidth * yi + xi;
  101.         if (demBuf[m] > heightThreshold) {
  102.           size_t n = (size_t)demWidth * dstBandNum * yi + dstBandNum * xi;
  103.           for (int bi = 0; bi < 3; bi++) {
  104.             dstBuf[n + bi] = (uint8_t)thresholdRgb[bi];
  105.           }
  106.         }
  107.       }
  108.     }
  109.   }
  110. }
  111. void WriteDst() {
  112.   string workDir = getenv("GISBasic");
  113.   string demPath = workDir + "/../Data/Terrain/dst.tif";
  114.   GDALDriver *pDriver =
  115.       GetGDALDriverManager()->GetDriverByName("GTIFF");  //图像驱动
  116.   char **ppszOptions = NULL;
  117.   ppszOptions =
  118.       CSLSetNameValue(ppszOptions, "BIGTIFF", "IF_NEEDED");  //配置图像信息
  119.   GDALDataset *dst = pDriver->Create(demPath.c_str(), demWidth, demHeight, 4,
  120.                                      GDT_Byte, ppszOptions);
  121.   if (!dst) {
  122.     printf("Can't Write Image!");
  123.     return;
  124.   }
  125.   dst->SetGeoTransform(geoTransform);
  126.   int depth = sizeof(uint8_t);
  127.   dst->RasterIO(GF_Write, 0, 0, demWidth, demHeight, dstBuf.data(), demWidth,
  128.                 demHeight, GDT_Byte, dstBandNum, nullptr, dstBandNum * depth,
  129.                 demWidth * dstBandNum * depth, depth);
  130.   GDALClose(dst);
  131.   dst = nullptr;
  132. }
  133. int main() {
  134.   GDALAllRegister();  // GDAL所有操作都需要先注册格式
  135.   //设置Proj数据
  136.   std::string projDataPath = getenv("GISBasic");
  137.   projDataPath += "/share/proj";
  138.   CPLSetConfigOption("PROJ_LIB", projDataPath.c_str());
  139.   ReadDem();
  140.   InitColorTable();
  141.   double heightThreshold = startHeight;
  142.   while (heightThreshold < endHeight) {
  143.     heightThresholdList.push_back(heightThreshold);
  144.     heightThreshold = heightThreshold + heightInterval;
  145.   }
  146.   if (heightThresholdList.size() == 1) {
  147.     heightRGBList.push_back(tableRGB[0]);
  148.   } else {
  149.     size_t step = tableRGB.size() / (heightThresholdList.size() - 1);
  150.     size_t index = 0;
  151.     for (size_t i = 0; i < heightThresholdList.size() - 1; i++) {
  152.       heightRGBList.push_back(tableRGB[index]);
  153.       index = index + step;
  154.     }
  155.     heightRGBList.push_back(tableRGB[tableRGB.size() - 1]);
  156.   }
  157.   HandleDem();
  158.   WriteDst();
  159.   return 0;
  160. }
复制代码
与基于矢量要素的几何运算不同,基于栅格的运算更多的是基于图像处理的思想。我们并不知道每一条具体的等高线在哪里,但是我们可以向栅格中插值。具体来说,就是如果该栅格所代表的点的高程大于高程区间的临界值,那么就向其填充合适的颜色;按照高程区间格式填充多次,直到所有高程区间都填充完成。这样,等高线就由不同的颜色区间体现出来了。最终生成的等高线图如下图6.21所示。
8.png

结语

在本章中,我们详细论述了一种综合了矢量特性与栅格特性的地理空间数据——地形。因此,如果我们前面对矢量和栅格掌握的比较熟练,掌握地形相关的知识也不是太难。此外,我们还介绍了一些地形数据的基本处理方法,地形内插算法,晕渲图与等高线图的制作。其实地形相关的知识非常之丰富,远不是本章有限的内容所能涵盖的。而且,地形数据有其数据敏感性,普通从业者想获取高精度的数据进行深入研究也十分不易。不过还是那句话,示例的结果不重要,重要的是要了解其底层的原理,建立一个相对系统而全面的认知,在遇到更为复杂的难题时才能心中不慌。
本文节选自作者新书《GIS基础原理与技术实践》第6章。书中系统讲解 GIS 核心理论与多语言实战,适合开发者与高校师生。


来源:程序园用户自行投稿发布,如果侵权,请联系站长删除
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!

相关推荐

2026-1-23 09:13:42

举报

2026-2-3 07:38:37

举报

2026-2-3 11:01:42

举报

2026-2-8 15:20:28

举报

2026-2-12 01:11:18

举报

喜欢鼓捣这些软件,现在用得少,谢谢分享!
您需要登录后才可以回帖 登录 | 立即注册