For my new assignment, I wanted to use some library that could provide the "Posterize" effect. I found many libraries like Aviary SDK and jhlabs . Yes, they are easy to use, but they make the code more heavy. Therefore, I continue to search for the Android API itself, which can perform a similar task. And after a lot of RnD, I finally found one of my EffectsFactory time saving class, which provides the same as me. I applied it in my assignment. But the bad thing was added at API level 14, and my application should be compatible with at least API level 8.
So my question is:
Can I use the EffectsFactory class for a lower version? If so, how?
Or, if not, do we have any API in the Android SDK that is similar to effectfactory?
Please avoid links to any library or NDK open library.
android image-processing
TheLittleNaruto
source share