Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
谁能告诉我在哪里可以找到 freeImage.so?我一直在努力寻找相同的内容,但没有成功。任何帮助将不胜感激。我已尝试将 freeimage.a 转换为 freeImage.so 和那还没有奏效。提前谢谢你。
您可以自己从 FreeImage 源编译 .so。只需添加BUILD_SHARED_LIBRARY到 FreeImage 的Android.mk. 您还需要一个正确的头文件才能将 .so 中的函数导入到您的项目中。
BUILD_SHARED_LIBRARY
Android.mk
PS你为什么不喜欢静态库.a?