2016-11-30 12 views
-2

イメージを切り抜く単純なアプリケーションを作成しました。今度はこのイメージをFire Baseに保存したいと思います。ビットマップを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に保存する方法。私は多くのチュートリアルを試みましたが、成功できませんでした。簡単なコードで確認してください。

+0

*私は多くのチュートリアルを試みたが、* .... **リンクを成功することができませんでしたか、それは** – Selvin

答えて

0

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

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 = bYtE.toByteArray(); 
    String imageB64 = Base64.encodeToString(byteArray, Base64.DEFAULT); 
    // store & retrieve this string to firebase 
    } 
1

まず、Firebase Storageの依存関係を追加する必要がありますあなたの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 

あなたが適切な参照を作成したら、あなたはその後、FirebaseストレージにファイルをアップロードするputBytes()、PUTFILE()、またはputStream()メソッドを呼び出します。

putBytes()メソッドは、Firebase Storageにファイルをアップロードする最も簡単な方法です。 putBytes()はバイト[]を取り、アップロードのステータスを管理および監視するために使用できるUploadTaskを返します。

// 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(); 
    } 
}); 
+0

を実現しなかったと私はURIにこのビットマップを変換したい場合はそうそして、どのようにすることができますか? –

関連する問題