I'm using with no problem libgfl211.dll for about 4 years in my ASP.NET 1.1 application (on Windows Server 2003, IIS 6) to check uploaded image and it's size. Here's a sample of wrapper code that call DLL's gflLibraryInit method:
Code: Select all
<DllImport("libgfl211.dll", EntryPoint:="gflLibraryInit", _
SetLastError:=True, CharSet:=CharSet.Ansi, ExactSpelling:=True, _
CallingConvention:=CallingConvention.StdCall)> _
Protected Shared Function LibraryInit() As Int16
End Function
But from last week I've got exception:
Code: Select all
System.DllNotFoundException: ?
at BS.Images.ImageParameters.LibraryInit()
Now I have no idea, what caused this exception and what to do. I've tried newer versions, such as libgfl282.dll with the same error.