6

我必须在 ac# 项目中使用 gdal。我要做的就是将一个简单的位图“转换”为 GeoTiff。我在 gdal 网站上阅读了一些文档,但未能使其完美运行。事实上,我的位图已成功导出到 geotiff,但如果我使用 GIS 软件(例如 QuantumGIS)打开 geotiff,则 GeoTiff 会在 y 轴上反转:

在此处输入图像描述

而原始位图如下所示:

在此处输入图像描述

这是我所做的:

首先,我将一个临时文件写入磁盘(即位图),通过 gdal 函数(Gdal.Open(path))创建一个包含位图的数据集,然后使用 GTiff 驱动程序创建一个新数据集位图数据集,我设置了地理转换并将 geotiff 写入磁盘:

  String wktProj = null;
  String tmpPath = @"C:\tmp.bmp";
  Bitmap tmpBitmap = bmp.Clone(new Rectangle(0, 0, bmp.Width, bmp.Height), pixFormat);
  tmpBitmap.Save(tmpPath, ImageFormat.Bmp);

  String[] options = null;
  Gdal.AllRegister();
  OSGeo.GDAL.Driver srcDrv = Gdal.GetDriverByName("GTiff");
  Dataset srcDs = Gdal.Open(tmpPath, Access.GA_ReadOnly);
  Dataset dstDs = srcDrv.CreateCopy(path, srcDs, 0, options, null, null);

  //Set the map projection
  Osr.GetWellKnownGeogCSAsWKT("WGS84", out wktProj);
  dstDs.SetProjection(wktProj);

  //Set the map georeferencing
  double mapWidth = Math.Abs(latLongMap.listBounds.topRight.x - latLongMap.listBounds.bottomLeft.x);
  double mapHeight = Math.Abs(latLongMap.listBounds.topRight.y - latLongMap.listBounds.bottomLeft.y);
  double[] geoTransfo = new double[] { -5.14, mapWidth / bmp.Width, 0, 48.75, 0, mapHeight / bmp.Height };
  dstDs.SetGeoTransform(geoTransfo);

  dstDs.FlushCache();
  dstDs.Dispose();
  srcDs.Dispose();
  srcDrv.Dispose();
  tmpBitmap.Dispose();

  File.Delete(tmpPath);

知道我做错了什么吗?

编辑我不知道它是否重要,但像素位图是 8bppIndexed。

4

1 回答 1

5

为了解决这个问题,我替换了这一行:

double[] geoTransfo = new double[] { -5.14, mapWidth / bmp.Width, 0, 48.75, 0, mapHeight / bmp.Height };

通过这个:

double[] geoTransfo = new double[] { -5.14, mapWidth / bmp.Width, 0, 48.75, 0, (mapHeight / bmp.Height)*(-1) };

看起来像素大小(高度)必须是负数。

于 2012-11-05T11:01:50.373 回答