Top "Android-bitmap" questions

A Java Object from android.

Android Blur View (Blur background behind the view)

I am trying to make the bottom part of an Image blur for the view on top it like in …

android blur android-image android-bitmap blurry
Prevent bitmap too large to be uploaded into a texture android

I need to display original image in full screen in gallery form. For thumb it will be work perfectly and …

android android-bitmap
BitmapFactory OOM driving me nuts

I've been doing a lot of searching and I know a lot of other people are experiencing the same OOM …

android out-of-memory android-bitmap
Is there a way to get URI of bitmap without saving it to sdcard?

I am making an app that allows the user to share an image using android intent but how to get …

android bitmap uri android-bitmap
Release Memory of Particular Activity when it is Destroyed

I have a launcher Activity that load and resize big bitmap as it's background when it opens. Whenever hit the …

android android-studio out-of-memory android-bitmap android-memory
convert android.graphics.Bitmap to java.io.File

I want to upload edited Bitmap image to server using multipart uploading like this, multipartEntity.addPart("ProfilePic", new FileBody(file)); …

android android-bitmap
Does ImageView.setImageBitmap() recycle the previously set bitmap?

Let's say I have code sort of like the one below: protected void onCreate(Bundle bundle){ this.imageView = (ImageView) contentView.…

android android-bitmap
Flip a Bitmap image horizontally or vertically

By using this code we can rotate an image: public static Bitmap RotateBitmap(Bitmap source, float angle) { Matrix matrix = new …

java android image matrix android-bitmap
How to check if a Bitmap is empty (blank) on Android

How can I check if a Bitmap object is completely blank, i.e. all its pixels are transparent, without a …

android bitmap android-bitmap
How to load a bitmap into an image-view with Picasso

Yes, I am using Picasso to load a bitmap. The reason is I am decoding URIs in one part of …

android picasso android-bitmap