1

我被一个奇怪的问题困住了。在我的应用程序中,用户可以更改他/她的个人资料图片。并且该图像以一轮显示。我正在从相机/文件(图库)中获取图像并在圆角隐藏位图我正在使用以下代码。

public static Bitmap getRoundedShape(Context context, Bitmap scaleBitmapImage, int imageWidth, int imageHeight) {
        int targetWidth = getDPEquivalentPixels(context, imageWidth);
        int targetHeight = getDPEquivalentPixels(context, imageHeight);
        Bitmap targetBitmap = Bitmap.createBitmap(targetWidth, targetHeight, Bitmap.Config.ARGB_8888);

        Canvas canvas = new Canvas(targetBitmap);
        Path path = new Path();
        path.addCircle(((float) targetWidth - 1) / 2, ((float) targetHeight - 1) / 2, (Math.min(((float) targetWidth), ((float) targetHeight)) / 2), Path.Direction.CW);
        Paint paint = new Paint();
        paint.setColor(Color.GRAY);
        // paint.setStyle(Paint.Style.STROKE);
        paint.setStyle(Paint.Style.FILL);
        paint.setAntiAlias(true);
        paint.setDither(true);
        paint.setFilterBitmap(true);
        canvas.drawOval(new RectF(0, 0, targetWidth, targetHeight), paint);

        canvas.clipPath(path);
        Bitmap sourceBitmap = scaleBitmapImage;
        canvas.drawBitmap(sourceBitmap, new Rect(0, 0, sourceBitmap.getWidth(), sourceBitmap.getHeight()), new Rect(0, 0, targetWidth, targetHeight), null);
        return targetBitmap;
    }

首先,我将图像上传到服务器进行压缩。然后我将它作为字节数组保存在本地 SQLite 中,并使用上述方法将其转换为圆形位图以显示在ImageView.

从现在开始,我将参考SQLite个人资料图片。我的问题是第一次圆角代码工作正常,但是当我使用 SQLIte Image 并尝试将其转换为圆形时,我收到以下错误。

A/libc(14809): Fatal signal 11 (SIGSEGV) at 0x5f763ee0 (code=1), thread 14809

编辑 ::

我有保存从 SQLite 检索的用户对象的用户 POJO。我正在将此 Pojo 转换为 json 并存储在 SharedPreferance 中,直到用户会话处于活动状态。

public class User {

    private int uid;
    private String userName;
    private String firstName;
    private String lastName;
    private String email;
    private Date dob;
    private String gender;
    private int delFlag;
    private int pin;
    private Bitmap imageData;

}

我正在使用 Gson 进行 JSON 到 POJO 和反之亦然的解析。但我不知道 Gson 库是否会imageData正确解析我的(数据类型位图)。它可能会产生问题。

4

1 回答 1

1

我想你会想要检查这个家伙的解决方案,因为 Bitmap 似乎是不可序列化的。我对 JSON/Gson 的机制知之甚少,无法知道这绝对是问题所在。如果我站在你的立场上,我会首先更改代码,以便它从 PNG 文件而不是 JSON 文件中读取位图,并确认这是问题所在。然后看一个更好的方法来序列化/存储位图,如上面的链接。

于 2013-03-12T11:13:40.090 回答