我正在使用FreeImage dll来显示jpeg2000图像文件。但是当我运行一些演示时,所有这些都没有成功。他们第一次停止我调用FreeImage API函数。 (FreeImage.LoadEx,FreeImage.Load ..等),一切都与FreeImage基础样本相同。
任何人都可以帮我解决这个问题吗?
我有一个Form应用程序,我添加了FreeImageNet.dll作为参考。 FreeImage项目我从http://freeimage.sourceforge.net/download.html获得了lastet版本并构建。我在运行时将FreeImaged.dll和FreeImageNET.dll放在同一个应用程序文件中。在cs文件中我写道:
private void Form1_Load(object sender, EventArgs e)
{
if (!FreeImage.IsAvailable())
{
MessageBox.Show("Not exist");
}
}
此消息框始终显示。这意味着FreeImage.dll没有添加到我的项目中。 我无法将此添加到我的项目中,请帮助我。 我的应用程序是x64,库也是x64。