请问.NET Core平台下调用GDAL库相关dll的问题

2019-01-03 02:19发布

GDAL本身是C++编写的,通过DllImport / PINVOKE的方式封装为C#可以调用的类:

1)GdalPINVOKE中引入gdal_wrap.dll:

[DllImport("gdal_wrap", EntryPoint="CSharp_SetConfigOption")]
public static extern void SetConfigOption(string jarg1, string jarg2);

2) Gdal.cs中调用GdalPINVOKE

public static void SetConfigOption(string pszKey, string pszValue) {
GdalPINVOKE.SetConfigOption(pszKey, pszValue);
if (GdalPINVOKE.SWIGPendingException.Pending) throw GdalPINVOKE.SWIGPendingException.Retrieve();
}

3)实际使用中调用Gdal:

Environment.SetEnvironmentVariable("GEOTIFF_CSV", gdalData);
Gdal.SetConfigOption("GEOTIFF_CSV", gdalData);

 

现在,在windows 操作系统中,以上的过程可以正常调用;但是在Linux环境下调用的时候,提示无法加载gdal_wrap.dll,缺少dll或它的依赖项:

System.TypeInitializationException: The type initializer for 'OSGeo.GDAL.GdalPINVOKE' threw an exception. ---> System.TypeInitializationException: The type initializer for 'SWIGExceptionHelper' threw an exception. ---> System.DllNotFoundException: Unable to load DLL 'gdal_wrap': The specified module or one of its dependencies could not be found.
(Exception from HRESULT: 0x8007007E)

我尝试把可能依赖的dll都放到运行目录下,仍然无法正常调用。

请问,有没有高手碰到过类似的问题?

 

2条回答
做自己的国王
2楼-- · 2019-01-03 02:37

试试NuGet包:Gdal.Core

查看更多
一夜七次
3楼-- · 2019-01-03 02:55

c++的dll在Linux是没法直接使用的. Linux下c++的动态库是so, 有源码切不依赖Windows的特性的话,可以将c++的源码用gcc编译为so,在调用

查看更多
登录 后发表回答