Okay, so this is somewhat related to my previous question on the ColorMatrixColorFilter, but I feel it's a significantly different question. I'm wondering if there's a way - or rather, how to extend the ColorFilter class to create my own custom color filter. For what I'm needing to accomplish, I need to write a custom filter that will query each pixel, convert its RGB value to HSL or LAB, modify the hue, convert it back to RGB, and set that pixel to the new value.

I'm thinking I could simply write a class that does this, taking in a Drawable and an amount of hue shift to perform, but it would have to be called manually for each and every Drawable, and every state of every Drawable, whereas the ColorFilter seems to handle this nicely. Given the existence of the LightingColorFilter and ColorMatrixColorFilter, it seems like it can be subclassed, but so far my efforts to find any sort of documentation have been futile. I can't seem to find the source code for any of the three (Lighting, ColorMatrix, ColorFilter); I'm thinking they're probably done in native code?

My question is this: How can I properly subclass ColorFilter? If I can't find a good answer for that, if anyone is able to find the source (I've searched Android's git) and post a link to that, that would be helpful as well.

Thanks!

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

As you said, the source code shows ColorFilter use native code so you cannot really subclass it.

There's probably no other way than creating your own class for what you want to do.

link|improve this answer
Could I not write my own native color filter though? Also, as far as creating my own class for it, do you think Java would be fast enough, or would that be something I should try to write through the NDK? – kcoppock Dec 10 '10 at 14:22
Yes you should create your class with the help of the NDK, it's a typical use because of the huge performance difference. But my advice is to write your class in Java first because it's easier to debug, especially if you're not familiar with the NDK. – LadaRaider Dec 10 '10 at 18:38
2  
The 150 points inspired me to check out the NDK myself... there seems to be a bitmap_plasma sample which is more or less exactly what you need to adapt. If you're on Windows you need to install Cygwin to run the GCC compiler and other tools, but it looks reasonably straightforward. – Reuben Scratton Dec 15 '10 at 11:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.