Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Compile Imagemagick for Android using NDK

Tags:

I'm new in android, so i have a question to ask. I want to use the ImageMagick library to edit images in android but I don't wanna use the JMagick interface.

Has anybody import Imagemagick on Android before? If so, can you please give me some hints on how to do this?

like image 713
Greta Avatar asked Apr 29 '11 12:04

Greta


2 Answers

I have ported it to android, and the code is in github.

like image 179
James Avatar answered Sep 28 '22 04:09

James


I guess nobody ported yet but you can do it yourself. You will basically need to get the sources and create an android.mk file.

There are several links that helped me out to build another lib:

  • The Android.mk documentation.
  • This short tutorial.
like image 29
Macarse Avatar answered Sep 28 '22 04:09

Macarse