<div dir="ltr">Hi everybody!
<br>I&#39;m a new user of GDAL; in particular I&#39;m working with GDAL in Visual 
Studio 2005 in order to read Geotiff images; I&#39;m following the GDAL API 
Tutorial, but I have some problems.
<br>I&#39;m trying to open the file (a geotiff image); according to the tutorial 
I have written the following code:
<br>
<br>#include &lt;gdal_priv.h&gt;
<br>int main()
<br>{
<br>&nbsp;&nbsp; GDALDataset *poDataset;
<br>&nbsp;&nbsp; GDALAllRegister();
<br>&nbsp;&nbsp; poDataset=(GDALDataset *)GDALOpen(&quot;image.tif&quot;, GA_ReadOnly);
<br>&nbsp;&nbsp; if (poDataset==NULL)
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; int a=12;
<br>}
<br>
<br>where image.tif is the name of my dataset; when I try to compile the 
program I receive a message with a lot of errors like these:
<br>Error&nbsp;&nbsp;&nbsp; 1&nbsp;&nbsp;&nbsp; error LNK2001: unresolved external symbol &quot;public: virtual 
char const * __thiscall GDALMajorObject::GetDescription(void)const &quot; 
(?GetDescription@GDALMajorObject@@UBEPBDXZ)&nbsp;&nbsp;&nbsp; provaopen.obj&nbsp;&nbsp; 
Error&nbsp;&nbsp;&nbsp; 2&nbsp;&nbsp;&nbsp; error LNK2001: unresolved external symbol &quot;public: virtual 
void __thiscall GDALMajorObject::SetDescription(char const *)&quot; 
(?SetDescription@GDALMajorObject@@UAEXPBD@Z)&nbsp;&nbsp;&nbsp; provaopen.obj&nbsp;&nbsp; 
Error&nbsp;&nbsp;&nbsp; 3&nbsp;&nbsp;&nbsp; error LNK2001: unresolved external symbol &quot;public: virtual 
char * * __thiscall GDALMajorObject::GetMetadata(char const *)&quot; 
(?GetMetadata@GDALMajorObject@@UAEPAPADPBD@Z)&nbsp;&nbsp;&nbsp; provaopen.obj&nbsp;&nbsp; 

<br>
<br>Can somebody help me?
<br>
<br>Best regards,
<br>Silvia
<br>
</div>