My C# application has to handle TIFF files, but LibTiff.Net always returns null by this code.
using BitMiracle.LibTiff.Classic;
...
using (Tiff image = Tiff.Open(fileName, "r"))
{
if (image == null)
{
//Always return null.
}
}
My C# application has to handle TIFF files, but LibTiff.Net always returns null by this code.
using BitMiracle.LibTiff.Classic;
...
using (Tiff image = Tiff.Open(fileName, "r"))
{
if (image == null)
{
//Always return null.
}
}