Question

But there is only Jmagick JAVA interface Provided in imagemagick website? Can we make that java library to include in android ? Using NDK is not preferred as Memory leaks may occur.And the code in github using ndk is not fully completed. If there is no way to include imagemagick in android can you provide a good api for image editing having the same number of filters

Was it helpful?

Solution

JMagick is an open source Java interface of ImageMagick.

Hence it consists of an Java part containing the interface and a binary part containing the actual implementation. As long as you don't find a pre-compiled JMagic binary for Android / ARM architecture you have to compile it yourself.

But in the end this JMagic binary has to be built by the NDK and as it bases on C code it can have memory leaks. Therefore if you want to use ImageMagick/JMagick you have to accept this.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top