将旋转图像上传到Firebase

时间:2019-01-12 17:39:44

标签: android firebase image-rotation

我正在尝试完成以下任务:

  1. 从图库中选择图像
  2. 使用ExifInterface将图像(如有必要)旋转到正确的方向
  3. 将图像上传到Firebase

问题

如果图像需要旋转,我将得到一个旋转的位图文件。如何将该位图文件转换为Uri,以便可以上传到Firebase?

public void onActivityResult(int requestCode, int resultCode, Intent data) {
    super.onActivityResult(requestCode, resultCode, data);

    if(requestCode == GALLERY_INTENT && resultCode == Activity.RESULT_OK) {
        mImageUri = data.getData();

        try{
            Bitmap bitmap = MediaStore.Images.Media.getBitmap(getActivity().getApplicationContext().getContentResolver(),mImageUri);
            rotatedBitmap = rotateImageIfRequired(getContext(), bitmap, mImageUri);
            mVideoImage.setImageBitmap(rotatedBitmap);
            imageHeight = bitmap.getHeight();
            imageWidth = bitmap.getWidth();

        }catch (IOException e){
            e.printStackTrace();
        }
}

private static Bitmap rotateImageIfRequired(Context context, Bitmap img, Uri selectedImage) throws IOException {

    InputStream input = context.getContentResolver().openInputStream(selectedImage);
    ExifInterface ei;
    if (Build.VERSION.SDK_INT > 23)
        ei = new ExifInterface(input);
    else
        ei = new ExifInterface(selectedImage.getPath());

    int orientation = ei.getAttributeInt(ExifInterface.TAG_ORIENTATION, ExifInterface.ORIENTATION_NORMAL);

    switch (orientation) {
        case ExifInterface.ORIENTATION_ROTATE_90:
            return rotateImage(img, 90);
        case ExifInterface.ORIENTATION_ROTATE_180:
            return rotateImage(img, 180);
        case ExifInterface.ORIENTATION_ROTATE_270:
            return rotateImage(img, 270);
        default:
            return img;
    }
}

private static Bitmap rotateImage(Bitmap img, int degree) {
    Matrix matrix = new Matrix();
    matrix.postRotate(degree);
    Bitmap rotatedImg = Bitmap.createBitmap(img, 0, 0, img.getWidth(), img.getHeight(), matrix, true);
    img.recycle();
    return rotatedImg;
}

1 个答案:

答案 0 :(得分:0)

要将位图上传到FireBase存储中,您需要将其转换为字节数组。您可以通过创建ByteArrayOutputStream来做到这一点。

ByteArrayOutputStream boas = new ByteArrayOutputStream();

然后将位图压缩为JPEG或PNG等格式。 compress方法采用3个参数,即格式,质量和ByteArrayOutputStream。

bitmap.compress(Bitmap.CompressFormat.JPEG, 100, boas);

然后创建您要在其中放置照片的FireBase存储参考的参考。

String imageFileName = "ExampleName";    
StorageReference ref = FirebaseStorage.getInstance().getReference().child("images").child(imageFileName);

在这里,我创建了一个名为“ images”的文件夹,并在其中创建了一个文件,该文件使用先前创建的imageFileName String

命名。

然后,我可以使用

使用UploadTask将其上传到FireBase
UploadTask task = ref.putBytes(data);

使用此任务,您可以创建成功和失败侦听器。

 task.addOnSuccessListener(new OnSuccessListener<UploadTask.TaskSnapshot>() {
        @Override
        public void onSuccess(UploadTask.TaskSnapshot taskSnapshot) {

        }
    }).addOnFailureListener(new OnFailureListener() {
        @Override
        public void onFailure(@NonNull Exception e) {

        }
    });