web-dev-qa-db-fra.com

Android définir le bitmap sur Imageview

Bonjour, j'ai une chaîne au format Base64. Je veux le convertir en bitmap, puis l’afficher en ImageView. C'est le code:

ImageView user_image;
Person person_object;
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.user_profile_screen);

    // ImageViews
    user_image = (ImageView) findViewById(R.id.userImageProfile);

    Bundle data = getIntent().getExtras();
    person_object = data.getParcelable("person_object");
    // getPhoto() function returns a Base64 String
    byte[] decodedString = Base64.decode(person_object.getPhoto(), Base64.DEFAULT);

    Bitmap decodedByte = BitmapFactory.decodeByteArray(decodedString, 0, decodedString.length);
    user_image.setImageBitmap(decodedByte);
    }

Ce code obtient la chaîne Base64 avec succès et je n’obtiens aucune erreur. Mais cela n'affiche pas l'image. Quel peut être le problème? Merci

28
kgnkbyl

S'il vous plaît essayez ceci:

byte[] decodedString = Base64.decode(person_object.getPhoto(),Base64.NO_WRAP);
InputStream inputStream  = new ByteArrayInputStream(decodedString);
Bitmap bitmap  = BitmapFactory.decodeStream(inputStream);
user_image.setImageBitmap(bitmap);
39
Sarath Kumar Sivan

Il existe une bibliothèque appelée Picasso qui permet de charger efficacement des images à partir d'une URL. Il peut également charger une image à partir d'un fichier.

Exemples:

  1. Charger l'URL dans ImageView sans générer de bitmap:

    Picasso.with(context) // Context
           .load("http://abc.imgur.com/gxsg.png") // URL or file
           .into(imageView); // An ImageView object to show the loaded image
    
  2. Charger l'URL dans ImageView en générant un bitmap:

    Picasso.with(this)
           .load(artistImageUrl)
           .into(new Target() {
               @Override
               public void onBitmapLoaded(final Bitmap bitmap, Picasso.LoadedFrom from) {
                   /* Save the bitmap or do something with it here */
    
                   // Set it in the ImageView
                   theView.setImageBitmap(bitmap)
               }
    
               @Override
               public void onBitmapFailed(Drawable errorDrawable) {
    
               }
    
               @Override
               public void onPrepareLoad(Drawable placeHolderDrawable) {
    
               }
           });
    

Il y a beaucoup plus d'options disponibles à Picasso. Voici la documentation .

6
Dhruv Raval

ce code fonctionne avec moi

 ImageView carView = (ImageView) v.findViewById(R.id.car_icon);

                            byte[] decodedString = Base64.decode(picture, Base64.NO_WRAP);
                            InputStream input=new ByteArrayInputStream(decodedString);
                            Bitmap ext_pic = BitmapFactory.decodeStream(input);
                            carView.setImageBitmap(ext_pic);
1
Mohamed Megahed