diff --git a/Code/IO/otbGDALImageIO.cxx b/Code/IO/otbGDALImageIO.cxx index e4b9f9fb439b51455b27cac1cb9cbd13dff1a7c8..0d309f96f1137ec801a214e0b492fecbe29877fe 100644 --- a/Code/IO/otbGDALImageIO.cxx +++ b/Code/IO/otbGDALImageIO.cxx @@ -898,6 +898,12 @@ void GDALImageIO::InternalReadImageInformation() itk::EncapsulateMetaData<std::string>(dict, MetaDataKey::DriverShortNameKey, driverShortName); itk::EncapsulateMetaData<std::string>(dict, MetaDataKey::DriverLongNameKey, driverLongName); + + if (strcmp(dataset->GetDriver()->GetDescription(),"JP2OpenJPEG") == 0) + { + // store the cache size used for Jpeg2000 files + itk::EncapsulateMetaData<unsigned int>(dict, MetaDataKey::CacheSizeInBytes , GDALGetCacheMax64()); + } /* -------------------------------------------------------------------- */ /* Get the projection coordinate system of the image : ProjectionRef */