I need to use android.graphics.Bitmap in my Java project without Android platform. The problem is that I want to process the picture which comes to the server from Android device as a Bitmap. So, I need some methods that use native code. How can I get these native methods? I tried to find them at http://androidxref.com but if I have, for example,
static int Bitmap_width(JNIEnv* env, jobject, SkBitmap* bitmap) {return bitmap->width();}
clicking width()
refers to the new search where there are lots of classes contating different width()
.