android-chat-starter icon indicating copy to clipboard operation
android-chat-starter copied to clipboard

Emoji's don't show

Open VeeraAndroid opened this issue 9 years ago • 6 comments

Error loading image : java.lang.UnsatisfiedLinkError: Native method not found: xxx.xxxxxxx.xxxx.emoji_widgets.AndroidUtilities.loadBitmap:(Ljava/lang/String;Landroid/graphics/Bitmap;IIII)V

VeeraAndroid avatar Mar 03 '16 08:03 VeeraAndroid

Have you modified the namespace? What is xxx.xxxxxxx.xxxx ?

madhur avatar Mar 03 '16 09:03 madhur

my package name

VeeraAndroid avatar Mar 03 '16 09:03 VeeraAndroid

Then you have to recompile the native library with your own package names in the function using NDK. See the source file here https://github.com/madhur/android-chat-starter/blob/master/app/jni/image.c

JNIEXPORT void Java_in_co_madhur_chatbubblesdemo_AndroidUtilities_blurBitmap(JNIEnv *env, jclass class, jobject bitmap, int radius) {

madhur avatar Mar 03 '16 09:03 madhur

i changed my package name, but still same error.

E/NativeLoader.java: [initNativeLibs:203]NativeLoader : java.lang.UnsatisfiedLinkError: Couldn't load chat.4 from loader dalvik.system.PathClassLoader[dexPath=/data/app/com.projectm.mobi-1.apk,libraryPath=/data/app-lib/com.projectm.mobi-1]: findLibrary returned null


java.lang.UnsatisfiedLinkError: Native method not found: com.project.main.tabs.emojiwidgets.AndroidUtilities.loadBitmap:(Ljava/lang/String;Landroid/graphics/Bitmap;IIII)V

VeeraAndroid avatar Mar 03 '16 10:03 VeeraAndroid

Can't help unless I see the source.

madhur avatar Mar 03 '16 11:03 madhur

i have the same issue, how can i recompile? this is my new image.c:

`#include <jni.h> #include <stdio.h> #include <setjmp.h> #include <libjpeg/jpeglib.h> #include <android/bitmap.h> #include "utils.h"

static inline uint64_t get_colors (const uint8_t *p) { return p[0] + (p[1] << 16) + ((uint64_t)p[2] << 32); }

static void fastBlurMore(int imageWidth, int imageHeight, int imageStride, void *pixels, int radius) { uint8_t *pix = (uint8_t *)pixels; const int w = imageWidth; const int h = imageHeight; const int stride = imageStride; const int r1 = radius + 1; const int div = radius * 2 + 1;

if (radius > 15 || div >= w || div >= h || w * h > 90 * 90 || imageStride > imageWidth * 4) {
    return;
}

uint64_t *rgb = malloc(imageWidth * imageHeight * sizeof(uint64_t));
if (rgb == NULL) {
    return;
}

int x, y, i;

int yw = 0;
const int we = w - r1;
for (y = 0; y < h; y++) {
    uint64_t cur = get_colors (&pix[yw]);
    uint64_t rgballsum = -radius * cur;
    uint64_t rgbsum = cur * ((r1 * (r1 + 1)) >> 1);

    for (i = 1; i <= radius; i++) {
        uint64_t cur = get_colors (&pix[yw + i * 4]);
        rgbsum += cur * (r1 - i);
        rgballsum += cur;
    }

    x = 0;

#define update(start, middle, end) \
        rgb[y * w + x] = (rgbsum >> 6) & 0x00FF00FF00FF00FF; \
        rgballsum += get_colors (&pix[yw + (start) * 4]) - 2 * get_colors (&pix[yw + (middle) * 4]) + get_colors (&pix[yw + (end) * 4]); \
        rgbsum += rgballsum; \
        x++; \

    while (x < r1) {
        update (0, x, x + r1);
    }
    while (x < we) {
        update (x - r1, x, x + r1);
    }
    while (x < w) {
        update (x - r1, x, w - 1);
    }
#undef update

    yw += stride;
}

const int he = h - r1;
for (x = 0; x < w; x++) {
    uint64_t rgballsum = -radius * rgb[x];
    uint64_t rgbsum = rgb[x] * ((r1 * (r1 + 1)) >> 1);
    for (i = 1; i <= radius; i++) {
        rgbsum += rgb[i * w + x] * (r1 - i);
        rgballsum += rgb[i * w + x];
    }

    y = 0;
    int yi = x * 4;

#define update(start, middle, end) \
        int64_t res = rgbsum >> 6; \
        pix[yi] = res; \
        pix[yi + 1] = res >> 16; \
        pix[yi + 2] = res >> 32; \
        rgballsum += rgb[x + (start) * w] - 2 * rgb[x + (middle) * w] + rgb[x + (end) * w]; \
        rgbsum += rgballsum; \
        y++; \
        yi += stride;

    while (y < r1) {
        update (0, y, y + r1);
    }
    while (y < he) {
        update (y - r1, y, y + r1);
    }
    while (y < h) {
        update (y - r1, y, h - 1);
    }
#undef update
}

}

static void fastBlur(int imageWidth, int imageHeight, int imageStride, void *pixels, int radius) { uint8_t *pix = (uint8_t *)pixels; const int w = imageWidth; const int h = imageHeight; const int stride = imageStride; const int r1 = radius + 1; const int div = radius * 2 + 1;

if (radius > 15 || div >= w || div >= h || w * h > 90 * 90 || imageStride > imageWidth * 4) {
    return;
}

uint64_t *rgb = malloc(imageWidth * imageHeight * sizeof(uint64_t));
if (rgb == NULL) {
    return;
}

int x, y, i;

int yw = 0;
const int we = w - r1;
for (y = 0; y < h; y++) {
    uint64_t cur = get_colors (&pix[yw]);
    uint64_t rgballsum = -radius * cur;
    uint64_t rgbsum = cur * ((r1 * (r1 + 1)) >> 1);

    for (i = 1; i <= radius; i++) {
        uint64_t cur = get_colors (&pix[yw + i * 4]);
        rgbsum += cur * (r1 - i);
        rgballsum += cur;
    }

    x = 0;

    #define update(start, middle, end)  \
            rgb[y * w + x] = (rgbsum >> 4) & 0x00FF00FF00FF00FFLL; \
            rgballsum += get_colors (&pix[yw + (start) * 4]) - 2 * get_colors (&pix[yw + (middle) * 4]) + get_colors (&pix[yw + (end) * 4]); \
            rgbsum += rgballsum;        \
            x++;                        \

    while (x < r1) {
        update (0, x, x + r1);
    }
    while (x < we) {
        update (x - r1, x, x + r1);
    }
    while (x < w) {
        update (x - r1, x, w - 1);
    }

    #undef update

    yw += stride;
}

const int he = h - r1;
for (x = 0; x < w; x++) {
    uint64_t rgballsum = -radius * rgb[x];
    uint64_t rgbsum = rgb[x] * ((r1 * (r1 + 1)) >> 1);
    for (i = 1; i <= radius; i++) {
        rgbsum += rgb[i * w + x] * (r1 - i);
        rgballsum += rgb[i * w + x];
    }

    y = 0;
    int yi = x * 4;

    #define update(start, middle, end)  \
            int64_t res = rgbsum >> 4;   \
            pix[yi] = res;              \
            pix[yi + 1] = res >> 16;    \
            pix[yi + 2] = res >> 32;    \
            rgballsum += rgb[x + (start) * w] - 2 * rgb[x + (middle) * w] + rgb[x + (end) * w]; \
            rgbsum += rgballsum;        \
            y++;                        \
            yi += stride;

    while (y < r1) {
        update (0, y, y + r1);
    }
    while (y < he) {
        update (y - r1, y, y + r1);
    }
    while (y < h) {
        update (y - r1, y, h - 1);
    }
    #undef update
}

free(rgb);

}

typedef struct my_error_mgr { struct jpeg_error_mgr pub; jmp_buf setjmp_buffer; } *my_error_ptr;

METHODDEF(void) my_error_exit(j_common_ptr cinfo) { my_error_ptr myerr = (my_error_ptr) cinfo->err; (*cinfo->err->output_message) (cinfo); longjmp(myerr->setjmp_buffer, 1); }

JNIEXPORT void Java_com_frind_AndroidUtilities_blurBitmap(JNIEnv *env, jclass class, jobject bitmap, int radius) { if (!bitmap) { return; }

AndroidBitmapInfo info;

if (AndroidBitmap_getInfo(env, bitmap, &info) < 0) {
    return;
}

if (info.format != ANDROID_BITMAP_FORMAT_RGBA_8888 || !info.width || !info.height || !info.stride) {
    return;
}

void *pixels = 0;
if (AndroidBitmap_lockPixels(env, bitmap, &pixels) < 0) {
    return;
}
if (radius <= 3) {
    fastBlur(info.width, info.height, info.stride, pixels, radius);
} else {
    fastBlurMore(info.width, info.height, info.stride, pixels, radius);
}
AndroidBitmap_unlockPixels(env, bitmap);

}

JNIEXPORT void Java_com_frind_AndroidUtilities_loadBitmap(JNIEnv *env, jclass class, jstring path, jobject bitmap, int scale, int width, int height, int stride) {

AndroidBitmapInfo info;
int i;

if ((i = AndroidBitmap_getInfo(env, bitmap, &info)) >= 0) {
    char *fileName = (*env)->GetStringUTFChars(env, path, NULL);
    FILE *infile;

    if ((infile = fopen(fileName, "rb"))) {
        struct my_error_mgr jerr;
        struct jpeg_decompress_struct cinfo;

        cinfo.err = jpeg_std_error(&jerr.pub);
        jerr.pub.error_exit = my_error_exit;

        if (!setjmp(jerr.setjmp_buffer)) {
            jpeg_create_decompress(&cinfo);
            jpeg_stdio_src(&cinfo, infile);

            jpeg_read_header(&cinfo, TRUE);

            cinfo.scale_denom = scale;
            cinfo.scale_num = 1;

            jpeg_start_decompress(&cinfo);
            int row_stride = cinfo.output_width * cinfo.output_components;
            JSAMPARRAY buffer = (*cinfo.mem->alloc_sarray) ((j_common_ptr) &cinfo, JPOOL_IMAGE, row_stride, 1);

            unsigned char *pixels;
            if ((i = AndroidBitmap_lockPixels(env, bitmap, &pixels)) >= 0) {
                int rowCount = min(cinfo.output_height, height);
                int colCount = min(cinfo.output_width, width);

                while (cinfo.output_scanline < rowCount) {
                    jpeg_read_scanlines(&cinfo, buffer, 1);

                    //if (info.format == ANDROID_BITMAP_FORMAT_RGBA_8888) {
                        if (cinfo.out_color_space == JCS_GRAYSCALE) {
                            for (i = 0; i < colCount; i++) {
                                float alpha = buffer[0][i] / 255.0f;
                                pixels[i * 4] *= alpha;
                                pixels[i * 4 + 1] *= alpha;
                                pixels[i * 4 + 2] *= alpha;
                                pixels[i * 4 + 3] = buffer[0][i];
                            }
                        } else {
                            int c = 0;
                            for (i = 0; i < colCount; i++) {
                                pixels[i * 4] = buffer[0][i * 3];
                                pixels[i * 4 + 1] = buffer[0][i * 3 + 1];
                                pixels[i * 4 + 2] = buffer[0][i * 3 + 2];
                                pixels[i * 4 + 3] = 255;
                                c += 4;
                            }
                        }
                    //} else if (info.format == ANDROID_BITMAP_FORMAT_RGB_565) {

                    //}

                    pixels += stride;
                }

                AndroidBitmap_unlockPixels(env, bitmap);
            } else {
                throwException(env, "AndroidBitmap_lockPixels() failed ! error=%d", i);
            }

            jpeg_finish_decompress(&cinfo);
        } else {
            throwException(env, "the JPEG code has signaled an error");
        }

        jpeg_destroy_decompress(&cinfo);
        fclose(infile);
    } else {
        throwException(env, "can't open %s", fileName);
    }

    (*env)->ReleaseStringUTFChars(env, path, fileName);
} else {
    throwException(env, "AndroidBitmap_getInfo() failed ! error=%d", i);
}

} `

lucabecchetti avatar Mar 31 '16 14:03 lucabecchetti