如何将位图保存到Firebase



我创建了一个简单的应用程序来裁剪图像。现在我想将此图像保存到消防基地。

photo.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            //Intent imageDownload = new 
Intent(Intent.ACTION_PICK,MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
      Intent imageDownload=new Intent();
      imageDownload.setAction(Intent.ACTION_GET_CONTENT);
      imageDownload.setType("image/*");
      imageDownload.putExtra("crop", "true");
      imageDownload.putExtra("aspectX", 1);
      imageDownload.putExtra("aspectY", 1);
      imageDownload.putExtra("outputX", 200);
      imageDownload.putExtra("outputY", 200);
      imageDownload.putExtra("return-data", true);
      startActivityForResult(imageDownload, GALLERY_REQUEST_CODE);

        }
    });
 }
  @Override
protected void onActivityResult(int requestCode, int resultCode, Intent 
  data) {
    super.onActivityResult(requestCode, resultCode, data);
    if(requestCode == GALLERY_REQUEST_CODE && resultCode == RESULT_OK && 
   data != null) {
        Bundle extras = data.getExtras();
        image = extras.getParcelable("data");
        photo.setImageBitmap(image);
   }



}

如何将此图像保存到火箱中。我尝试了许多教程,但无法成功。请使用简单的代码验证。

您必须首先将firebase存储的依赖项添加到build.gradle文件:

compile 'com.google.firebase:firebase-storage:10.0.1'
compile 'com.google.firebase:firebase-auth:10.0.1'

然后创建一个firebasestorage的实例:

FirebaseStorage storage = FirebaseStorage.getInstance();

要将文件上传到firebase存储,您首先创建对文件的完整路径的引用,包括文件名。

// Create a storage reference from our app
StorageReference storageRef = storage.getReferenceFromUrl("gs://<your-bucket-name>");
// Create a reference to "mountains.jpg"
StorageReference mountainsRef = storageRef.child("mountains.jpg");
// Create a reference to 'images/mountains.jpg'
StorageReference mountainImagesRef = storageRef.child("images/mountains.jpg");
// While the file names are the same, the references point to different files
mountainsRef.getName().equals(mountainImagesRef.getName());    // true
mountainsRef.getPath().equals(mountainImagesRef.getPath());    // false

创建了适当的参考后,您便调用putbytes(),putfile()或putStream()方法将文件上传到firebase存储。

putbytes()方法是将文件上传到firebase存储的最简单方法。putbytes()获取一个字节[],并返回一个可以用来管理和监视上传状态的上传任务。

// Get the data from an ImageView as bytes
imageView.setDrawingCacheEnabled(true);
imageView.buildDrawingCache();
Bitmap bitmap = imageView.getDrawingCache();
ByteArrayOutputStream baos = new ByteArrayOutputStream();
bitmap.compress(Bitmap.CompressFormat.JPEG, 100, baos);
byte[] data = baos.toByteArray();
UploadTask uploadTask = mountainsRef.putBytes(data);
uploadTask.addOnFailureListener(new OnFailureListener() {
    @Override
    public void onFailure(@NonNull Exception exception) {
        // Handle unsuccessful uploads
    }
}).addOnSuccessListener(new OnSuccessListener<UploadTask.TaskSnapshot>() {
    @Override
    public void onSuccess(UploadTask.TaskSnapshot taskSnapshot) {
        // taskSnapshot.getMetadata() contains file metadata such as size, content-type, and download URL.
        Uri downloadUrl = taskSnapshot.getDownloadUrl();
    }
});

firebase不支持二进制数据,因此您需要将图像数据转换为base64或使用Firebase Storage

方法1 (推荐)

 sref = FirebaseStorage.getInstance().getReference(); // please go to above link and setup firebase storage for android
 public void uploadFile(Uri imagUri) {
    if (imagUri != null) {
        final StorageReference imageRef = sref.child("android/media") // folder path in firebase storage
                .child(imagUri.getLastPathSegment());
        photoRef.putFile(imagUri)
                .addOnSuccessListener(new OnSuccessListener<UploadTask.TaskSnapshot>() {
                    @Override
                    public void onSuccess(UploadTask.TaskSnapshot snapshot) {
                        // Get the download URL
                        Uri downloadUri = snapshot.getMetadata().getDownloadUrl();
                        // use this download url with imageview for viewing & store this linke to firebase message data
                    }
                })
                .addOnFailureListener(new OnFailureListener() {
                    @Override
                    public void onFailure(@NonNull Exception exception) {
                         // show message on failure may be network/disk ?
                    }
                });
    }
}

方法2

对于小图像,我们仍然可以使用此解决方案,有firebase场值限制(1MB场值)检查官方文档以获取详细信息

public void getImageData(Bitmap bmp) {  
  ByteArrayOutputStream bao = new ByteArrayOutputStream();
  bmp.compress(Bitmap.CompressFormat.PNG, 100, bao); // bmp is bitmap from user image file
  bmp.recycle();
  byte[] byteArray = bao.toByteArray();
  String imageB64 = Base64.encodeToString(byteArray, Base64.URL_SAFE); 
  //  store & retrieve this string which is URL safe(can be used to store in FBDB) to firebase
  // Use either Realtime Database or Firestore
  }

'firebase-storage 16.0.1&quot'

task.getDowloadurl()未定义。您可以使用我检查,工作完美。

 private void firebaseUploadBitmap(Bitmap bitmap) {
    ByteArrayOutputStream stream = new ByteArrayOutputStream();
    bitmap.compress(Bitmap.CompressFormat.PNG, 100, stream);
    byte[] data = stream.toByteArray();
    StorageReference imageStorage = storage.getReference();
    StorageReference imageRef = imageStorage.child("images/" + "imageName");
    Task<Uri> urlTask = imageRef.putBytes(data).continueWithTask(task -> {
        if (!task.isSuccessful()) {
            throw task.getException();
        }
        // Continue with the task to get the download URL
        return imageRef.getDownloadUrl();
    }).addOnCompleteListener(task -> {
        if (task.isSuccessful()) {
            Uri downloadUri = task.getResult();
            String uri = downloadUri.toString();
            sendMessageWithFile(uri);
        } else {
            // Handle failures
            // ...
        }
        progressBar.setVisibility(View.GONE);
    });
    
}
@Override
protected void onActivityResult(int requestCode, int resultCode, @Nullable Intent data) {
    super.onActivityResult(requestCode, resultCode, data);
    if (requestCode == PICK_IMAGE && resultCode == Activity.RESULT_OK) {
        //      Bitmap imageBitmap = data.getData() ;
        Bitmap photo = (Bitmap) data.getExtras().get("data");
        if (photo != null)
            firebaseUploadBitmap(photo);
    } else if (requestCode == SELECT_IMAGE && resultCode == Activity.RESULT_OK) {
        Uri uri = data.getData();
        if (uri != null)
            firebaseUploadImage(uri);
    }
}

相关内容

  • 没有找到相关文章

最新更新