Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有任何库(开源或付费)允许将GeoTiff图像转换为ECW图像?理想情况下,该组件将简单地接收GeoTiff文件作为输入,并生成相应的ECW图像作为输出。它将支持从 .NET 本地调用,但我们可以解决任何外部流程要求。
GDAL 有一个可用的二进制文件,称为 gdal_translate。当与 ECW SDK 结合使用时,运行类似的命令
gdal_translate.exe SourceFile.tif DestFile.ecw -of ECW
将翻译您的文件。但是,它的上限为 500MB:
ERROR 1: ECW SDK 500MB compress limit exceeded.
因此,对于较大的文件,需要替代解决方案。