我被一个奇怪的问题困住了。在我的应用程序中,用户可以更改他/她的个人资料图片。并且该图像以一轮显示。我正在从相机/文件(图库)中获取图像并在圆角隐藏位图我正在使用以下代码。
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
正确解析我的(数据类型位图)。它可能会产生问题。