Top "Bitmap" questions

Data structure for encoding pictures as a set of bits, in which each image pixel is mapped to a bit or a group of bit.

Save bitmap to file function

I'm trying to save a bitmap to file and a specific directly using a function I've created. It's not working. …

android file-io android-intent bitmap android-file
Passing android Bitmap Data within activity using Intent in Android

I hava a Bitmap variable named bmp in Activity1 , and I want to send the bitmap to Activity2 Following is …

android android-intent bitmap
Use Picasso to get a callback with a Bitmap

I'm using Picasso to download images for my app. I'm in a situation where I need to access the Bitmap …

android bitmap picasso
How can I read image pixels' values as RGB into 2d array?

I was making a 2d map editor for my square tile platformer game, when I realized I could really use …

c# image bitmap rgb
Android: How does Bitmap recycle() work?

Let's say I have loaded an image in a bitmap object like Bitmap myBitmap = BitmapFactory.decodeFile(myFile); Now, what will …

android bitmap
Android bitmap image size in XML

In my XML file, I'm using bitmap as the following <bitmap android:src="@drawable/Icon" android:gravity="center"/> …

android xml bitmap
Android - Reduce image file size

I have an URI image file, and I want to reduce its size to upload it. Initial image file size …

android bitmap image-uploading image-resizing
Android Camera Intent: how to get full sized photo?

I am using intent to launch camera: Intent cameraIntent = new Intent( android.provider.MediaStore.ACTION_IMAGE_CAPTURE); getParent().startActivityForResult(cameraIntent, …

android bitmap camera
converting a canvas into bitmap image in android

I am trying to develop an app on canvas,I am drawing a bitmap on the canvas. After drawing, I …

android bitmap android-canvas
Encode and decode bitmap object in base64 string in Android

I want to encode and decode Bitmap object in string base64. I use the Android API10, I have tried, with …

android bitmap base64