Changes between Version 3 and Version 4 of BatchConversionOfRasterFormatsOnDOS


Ignore:
Timestamp:
May 30, 2013, 6:04:01 AM (11 years ago)
Author:
aperi2007
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BatchConversionOfRasterFormatsOnDOS

    v3 v4  
    1616}}}
    1717
     18With the version 1.8.0 of GDAL is also possible to convert from a PDF (georef and not) into a Raster like Tiff.
     19The next code will show how to translate a folder of pdf not geref in simples tiff 8obviously not georeferenced)
     20
     21{{{
     22for /R F:/folder1/source_folder %f IN (*.pdf) do gdal_translate.exe -co PROFILE=BASELINE -co TFW=NO -of GTiff %f F:/folder1/target_folder/%~nf.tif
     23
     24}}}
     25
     26
    1827
    1928----