<DIV>hello everyone:</DIV>
<DIV>&nbsp;&nbsp;&nbsp;&nbsp; i am new with gdal and very interested in it.now i want create&nbsp;a geotiff,including an image and much metadata such as create time,image format,image resource and so on.my codes are like this:</DIV>
<DIV>GDALDataset *poDstDS;//创建数据集&nbsp;<BR>GDALAllRegister();<BR>GDALDriver *poDriver;//创建驱动<BR>poDriver=GetGDALDriverManager()-&gt;GetDriverByName("GTIFF");//驱动指向Gtiff<BR>char **papszOptions = NULL;<BR>char *pszDstFilename;</DIV>
<DIV>&nbsp;int width=0;<BR>&nbsp;int height=0;<BR>&nbsp;int band=1;<BR>&nbsp;poDstDS = poDriver-&gt;Create( pszDstFilename, width,height,band,GDT_Byte, papszOptions );&nbsp;</DIV>
<DIV>&nbsp; char *pszNewDesc="";<BR>&nbsp; poDstDS-&gt;SetDescription(pszNewDesc;</DIV>
<DIV>&nbsp; poDstDS-&gt;SetMetadataItem(imageType,"",NULL);<BR>&nbsp; poDstDS-&gt;SetMetadataItem(imageId,"",NULL);<BR>&nbsp; poDstDS-&gt;SetMetadataItem(imageAddress,"",NULL);</DIV>
<DIV>i know it must be wrong,in fact that is my destination.who can help me to realize the function.thanks.</DIV>
<DIV>&nbsp;</DIV>