Changes between Version 9 and Version 10 of pkg-gdal-ecw
- Timestamp:
- 03/30/12 12:29:43 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
pkg-gdal-ecw
v9 v10 2 2 3 3 * Read-only plugin for ECW and JPEG2000 Raster Formats 4 * Requires gdal and manually-installed ECW 4. 1Runtime libraries4 * Requires gdal and manually-installed ECW 4.2 Runtime libraries 5 5 * Write support for ECW and JPEG2000 via the ECW SDK is not available as part of OSGeo4W 6 6 * Maintainer is FrankWarmerdam … … 8 8 == Installing ECW SDK == 9 9 10 The GDAL ECW Plugin requires the ECW 4. 1Runtime library, which is by ERDAS. In order to use the runtime libraries, the end user is required to download and install the DLLs into a system directory.10 The GDAL ECW Plugin requires the ECW 4.2 Runtime library, which is by ERDAS. In order to use the runtime libraries, the end user is required to download and install the DLLs into a system directory. 11 11 12 Download "ERDAS ECW/JP2 SDK Desktop Read-Only Version 4. 1" ECWJP2SDKSetup_RO_20100920.exe: http://downloads.erdas.com/reqdownload.aspx?guid=dff76d5e-8c03-4d3d-a1df-7c1422a6e1e912 Download "ERDAS ECW/JP2 SDK Desktop Read-Only Version 4.2" ECWJP2SDKSetup_RO_20110303.exe: http://downloads.erdas.com/reqdownload.aspx?guid=53e5b5ff-3591-4dcc-ac74-5aa985ab9ffd 13 13 14 14 After downloading and installing the ECW SDK it is necessary to copy the runtime DLLs from the {{{redistributable\vc90\win32\}}} directory to somewhere appropriate, like {{{C:\Windows\system32}}} (32-bit Windows), {{{C:\Windows\SysWOW64}}} (64-bit Windows), or {{{C:\OSGeo4w\bin}}}. … … 16 16 E.g.: 17 17 {{{ 18 copy "C:\Program Files\ERDAS\ERDAS ECW JPEG2000 Read SDK\redistributable\vc90\win32\*.dll" C:\Windows\system3218 copy "C:\Program Files\ERDAS\ERDAS ECWJP2 SDK Desktop Read-Only\redistributable\vc90\win32\*.dll" C:\Windows\system32 19 19 }}} 20 20 21 21 Or on a 64-bit version of Windows: 22 22 {{{ 23 copy "C:\Program Files (x86)\ERDAS\ERDAS ECW JPEG2000 Read SDK\redistributable\vc90\win32\*.dll" C:\Windows\SysWOW6423 copy "C:\Program Files (x86)\ERDAS\ERDAS ECWJP2 SDK Desktop Read-Only\redistributable\vc90\win32\*.dll" C:\Windows\SysWOW64 24 24 }}} 25 25 26 26 Note that downloading and installing these DLLs requires agreeing to a license. Please review the license terms carefully. 27 27 28 It is imperative that the VC9 ECW 4.1 SDK binaries be used. Any other ECW (NCS*) DLLs are unlikely to work properly. Failure to install the correct ECW libraries will normally result in a popup message reading "This application has failed to start because NCSEcw4_RO.dll was not found." or a console error report like: 28 It is imperative that the VC9 ECW 4.2 SDK binaries be used. Any other ECW (NCS*) DLLs are unlikely to work properly. However, it's reported that 4.1 SDK ECW DLLs seem to work as well. 29 30 Failure to install the correct ECW libraries will normally result in a popup message reading "This application has failed to start because NCSEcw4_RO.dll was not found." or a console error report like: 29 31 30 32 {{{ 31 33 C:\warmerda>gdalinfo 32 ERROR 1: Can't load requested DLL: C:\osgeo4w\bin\gdalplugins\1. 8\gdal_ECW_JP2ECW.dll34 ERROR 1: Can't load requested DLL: C:\osgeo4w\bin\gdalplugins\1.9\gdal_ECW_JP2ECW.dll 33 35 126: The specified module could not be found. 34 36 35 ERROR 1: Can't load requested DLL: C:\osgeo4w\bin\gdalplugins\1. 8\gdal_ECW_JP2ECW.dll37 ERROR 1: Can't load requested DLL: C:\osgeo4w\bin\gdalplugins\1.9\gdal_ECW_JP2ECW.dll 36 38 126: The specified module could not be found. 37 39 … … 39 41 [-norat] [-noct] [-checksum] [-mdd domain]* datasetname 40 42 }}} 41