Image Editing Library for Android

android, bitmap, graphics

Solution

Use GPUImage if you want to use OpenGL (fastest I know)

You can use Image Effect Pro which uses pure Java ( relatively slower) image processing.

You can also try Fast Image Processing Library (OpenGL based)

You can read more about Image Processing stuffs from here and here

Problem

I have a basic requirement for a simple image editing app for android. After displaying the image the user must be able to set alpha of the image , choose brightness , set contrast. For achieving this task i have tried the following libraries :- 1. JJIL 2. Android Image Filtering 3. Aviary SDK For JJIL i am facing problem importing the projects. For Android Image Filtering , there isnt much documentation available. Using Aviary i can achieve this but it has the aviary logo and using this SDK the user can choose get more features options and navigate to aviary app in app store. Which is the better way of doing this ? shall i use a library or i should use native android color class ? Thanks in advance

Original source