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
Asked
Active
Viewed 1,395 times
1
-
don't you feel this is a valid question? My question is genuine since there is no support for Android ? – user960872 Sep 25 '12 at 11:22
1 Answers
2
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.

Robert
- 39,162
- 17
- 99
- 152
-
1would you please suggest me any similar Image Editing Libraries for android. – user960872 Sep 18 '12 at 09:45