我正在尝试使用.NET中的pHash
我尝试做的第一件事是注册(regsvr32)phash.dll
并询问here
其次,我正尝试使用DllImport进行导入,如下所示。
[DllImport(@".\Com\pHash.dll")]
public static extern int ph_dct_imagehash(
[MarshalAs(UnmanagedType.LPStr)] string file,
UInt64 hash);
但是,当我尝试在运行时访问上述方法时,出现以下错误消息。
Unable to find an entry point named 'ph_dct_imagehash' in DLL '.\Com\pHash.dll'.
“入口点”是什么意思,为什么会出现错误?
谢谢你。
仅供引用-这是完整的源代码
using System;
using System.Diagnostics;
using System.Runtime.InteropServices;
using System.Windows;
namespace DetectSimilarImages
{
public partial class MainWindow : Window
{
[DllImport(@".\Com\pHash.dll")]
public static extern int ph_dct_imagehash(
[MarshalAs(UnmanagedType.LPStr)] string file,
UInt64 hash);
public MainWindow()
{
InitializeComponent();
Loaded += MainWindow_Loaded;
}
void MainWindow_Loaded(object sender, RoutedEventArgs e)
{
try
{
UInt64 hash1 = 0, hash2 = 0;
string firstImage = @"C:\Users\dance2die\Pictures\2011-01-23\177.JPG";
string secondImage = @"C:\Users\dance2die\Pictures\2011-01-23\176.JPG";
ph_dct_imagehash(firstImage, hash1);
ph_dct_imagehash(secondImage, hash2);
Debug.WriteLine(hash1);
Debug.WriteLine(hash2);
}
catch (Exception ex)
{
}
}
}
}
最佳答案
phash.org上的当前Windows源代码项目(自7/2011起)似乎没有从DLL导出ph_ API调用。您将需要通过__declspec(dllexport)在pHash.h行的开头添加这些代码,如下所示:
__declspec(dllexport) int ph_dct_imagehash(const char* file,ulong64 &hash);
然后,您应该使用dumpbin在DLL中看到导出内容
dumpbin /EXPORTS pHash.dll
...
Dump of file pHash.dll
...
1 0 00047A14 closedir = @ILT+2575(_closedir)
2 1 00047398 opendir = @ILT+915(_opendir)
3 2 00047A4B ph_dct_imagehash = @ILT+2630(_ph_dct_imagehash)
4 3 000477B2 readdir = @ILT+1965(_readdir)
5 4 00047A00 rewinddir = @ILT+2555(_rewinddir)
6 5 000477AD seekdir = @ILT+1960(_seekdir)
7 6 00047AFA telldir = @ILT+2805(_telldir)
现在,您应该可以使用C#进行的调用了。
然而...
尝试调用此代码时,CImg代码崩溃了,因此似乎有些more work to do here ...