-
大小: 2KB文件類型: .c金幣: 1下載: 0 次發(fā)布日期: 2021-01-07
- 語(yǔ)言: 其他
- 標(biāo)簽:
資源簡(jiǎn)介
GDAL讀取tiff圖像,需要配置GDAL庫(kù)。GDAL的基本用法。
代碼片段和文件信息
#include?“gdal.h“?
#include
#include?
#include?“cpl_string.h“??
/*#include
#include
#include
#include*/
int?main()?
{?
????
GDALDatasetH????hDataset;?
GDALDriverH?????hDriver;
GDALDriverH?hDriver1;
GDALRasterBandH?hBand;?
unsigned?short?*pafScanline;?
unsigned?char?*pafScanline1;?
????int?nXSizenYSize;
????int?nnij;
?//打開(kāi)文件
????GDALAllRegister();
????hDataset?=?GDALOpen(?“map.tif“?GA_ReadOnly?);?
????if(?hDataset?==?NULL?)?
????return?1;?
?
????hDriver?=?GDALGetDatasetDriver(?hDataset?);?
????printf(?“Driver:?%s/%s\n“?
????????????GDALGetDriverShortName(?hDriver?)?
????????????GDALGetDriverLongName(?hDriver?)?);?
?
????printf(?“Size?is?%dx%dx%d\n“?
????????????GDALGetRasterXSiz
評(píng)論
共有 條評(píng)論