如何使用VIPS dll?
我刚刚开始为我的项目学习 C# 和 ASP.NET,我需要使用 VIPS(基于视觉的页面分割)DLL,但我不知道如何去做,因为我是 C# 和 ASP.NET 的新手。知道如何使用 C# 创建和使用简单的 DLL,但我想知道如何查找 VIPS DLL 内的类和/或函数的名称以及如何使用它。我尝试了 2 或 3 个 DLL 查看器和反汇编程序但他们给出的输出是 asm 格式,很难阅读和理解。
I have just started learning C# and ASP.NET for my project and i need to use the VIPS(VIsion based Page Segmentation) DLL but i don't know how to go about doing that as im new to C# and ASP.NET.I know how to create and use a simple DLL using C# but then i want to know how to find out the names of the classes and/or functions inside the VIPS DLL and how to use it.I have tried 2 or 3 DLL viewers and disassemblers but the output they gave is in asm format which is very hard to read and understand.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
VIPS 看起来像一个非托管 DLL。您需要使用 PInvoke 从 C# 访问它。
由于您是 C# 新手,并且我通常假设您是 .NET,因此您应该从这里开始阅读:http: //en.wikipedia.org/wiki/Platform_Initation_Services
VIPS looks like an unmanaged DLL. You'll need to access it from C# using PInvoke.
Since you're new to C# and I would assume .NET in general, you should start by reading here: http://en.wikipedia.org/wiki/Platform_Invocation_Services