Changes between Initial Version and Version 1 of Ticket #4571


Ignore:
Timestamp:
Mar 19, 2012, 1:01:52 PM (12 years ago)
Author:
tcm0116
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #4571 – Description

    initial v1  
    44
    55{{{
    6 GDALDatasetH WarpImage(GDALDatasetH hSrcDS, const char** dstWKT, GDALResampleAlg alg, CPLStringList options)
     6GDALDatasetH WarpImage(GDALDatasetH hSrcDS, const char* dstFile,
     7   const char** dstWKT, GDALResampleAlg alg, CPLStringList options)
    78{
    89   GDALWarpOptions *psWO;
     
    109110   // Create the output dataset
    110111   GDALDriver* pDriver = pDriver = GetGDALDriverManager()->GetDriverByName("GTiff");
    111    GDALDataset* pDataset = pDriver->CreateCopy(dstFile.c_str(), poDS, FALSE, options, NULL, NULL);
     112   GDALDataset* pDataset = pDriver->CreateCopy(dstFile, poDS, FALSE, options, NULL, NULL);
    112113
    113114   if (pDataset == NULL)