环境是Vs2003
我在c#里面调用扫描仪接口的
DWORD GetImageSize(const char* filename);方法,总是出现
未处理的“System.DllNotFoundException”类型的异常出现在 ConsoleApplication.exe 中。
其他信息: 无法加载 DLL (ImageRWSB.dll)。
不知道出了什么问题?
c#中的代码:
[DllImport("ImageRWSB.dll", EntryPoint = "GetImageSize", ExactSpelling = false, CallingConvention = CallingConvention.Cdecl)]
public static extern int GetImageSize(string filename);
//调用
Console.WriteLine(Win32API.GetImageSize("D:\\1.jpeg"));