[Android]通过JNI访问并操作Bitmap的元素,支持RGB565和ARGB8888

标签: androidbitmapjni
2014-05-09 20:35 2985人阅读 评论(1) 收藏 举报

版权声明:本文为博主原创文章,未经博主允许不得转载。

一段简单的JNI例子,输入是Bitmap(需要是Mutable),结果是把Bitmap变成灰度图。

为了看起来有点价值,所以同时支持了RGB565和ARGB8888(囧rz)

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <string.h>
  4. #include <stdint.h>
  5. #include <jni.h>
  6. #include <android/bitmap.h>
  7. #include <android/log.h>
  8. #ifndef eprintf
  9. #define eprintf(...) __android_log_print(ANDROID_LOG_ERROR,"@",__VA_ARGS__)
  10. #endif
  11. #define RGB565_R(p) ((((p) & 0xF800) >> 11) << 3)
  12. #define RGB565_G(p) ((((p) & 0x7E0 ) >> 5)  << 2)
  13. #define RGB565_B(p) ( ((p) & 0x1F  )        << 3)
  14. #define MAKE_RGB565(r,g,b) ((((r) >> 3) << 11) | (((g) >> 2) << 5) | ((b) >> 3))
  15. #define RGBA_A(p) (((p) & 0xFF000000) >> 24)
  16. #define RGBA_R(p) (((p) & 0x00FF0000) >> 16)
  17. #define RGBA_G(p) (((p) & 0x0000FF00) >>  8)
  18. #define RGBA_B(p)  ((p) & 0x000000FF)
  19. #define MAKE_RGBA(r,g,b,a) (((a) << 24) | ((r) << 16) | ((g) << 8) | (b))
  20. JNIEXPORT void JNICALL Java_com_yxcorp_hello_Effect_update
  21. (JNIEnv *env, jclass clazz, jobject zBitmap) {
  22. JNIEnv J = *env;
  23. if (zBitmap == NULL) {
  24. eprintf("bitmap is null\n");
  25. return;
  26. }
  27. // Get bitmap info
  28. AndroidBitmapInfo info;
  29. memset(&info, 0, sizeof(info));
  30. AndroidBitmap_getInfo(env, zBitmap, &info);
  31. // Check format, only RGB565 & RGBA are supported
  32. if (info.width <= 0 || info.height <= 0 ||
  33. (info.format != ANDROID_BITMAP_FORMAT_RGB_565 && info.format != ANDROID_BITMAP_FORMAT_RGBA_8888)) {
  34. eprintf("invalid bitmap\n");
  35. J->ThrowNew(env, J->FindClass(env, "java/io/IOException"), "invalid bitmap");
  36. return;
  37. }
  38. // Lock the bitmap to get the buffer
  39. void * pixels = NULL;
  40. int res = AndroidBitmap_lockPixels(env, zBitmap, &pixels);
  41. if (pixels == NULL) {
  42. eprintf("fail to lock bitmap: %d\n", res);
  43. J->ThrowNew(env, J->FindClass(env, "java/io/IOException"), "fail to open bitmap");
  44. return;
  45. }
  46. eprintf("Effect: %dx%d, %d\n", info.width, info.height, info.format);
  47. int x = 0, y = 0;
  48. // From top to bottom
  49. for (y = 0; y < info.height; ++y) {
  50. // From left to right
  51. for (x = 0; x < info.width; ++x) {
  52. int a = 0, r = 0, g = 0, b = 0;
  53. void *pixel = NULL;
  54. // Get each pixel by format
  55. if (info.format == ANDROID_BITMAP_FORMAT_RGB_565) {
  56. pixel = ((uint16_t *)pixels) + y * info.width + x;
  57. uint16_t v = *(uint16_t *)pixel;
  58. r = RGB565_R(v);
  59. g = RGB565_G(v);
  60. b = RGB565_B(v);
  61. } else {// RGBA
  62. pixel = ((uint32_t *)pixels) + y * info.width + x;
  63. uint32_t v = *(uint32_t *)pixel;
  64. a = RGBA_A(v);
  65. r = RGBA_R(v);
  66. g = RGBA_G(v);
  67. b = RGBA_B(v);
  68. }
  69. // Grayscale
  70. int gray = (r * 38 + g * 75 + b * 15) >> 7;
  71. // Write the pixel back
  72. if (info.format == ANDROID_BITMAP_FORMAT_RGB_565) {
  73. *((uint16_t *)pixel) = MAKE_RGB565(gray, gray, gray);
  74. } else {// RGBA
  75. *((uint32_t *)pixel) = MAKE_RGBA(gray, gray, gray, a);
  76. }
  77. }
  78. }
  79. AndroidBitmap_unlockPixels(env, zBitmap);
  80. }
上一篇:设计模式C#实现(八)——原型模式


下一篇:SQL 单表分页存储过程和单表多字段排序和任意字段分页存储过程