What I am currently trying to do is the following:
Take a Picture, compress it to PNG, covert using Base64 and send it to a database through PHP. That all works like a charm. I can also decode the Base64 string and display the photo perfectly.
However, the problems seems to be that when I view the picture on my browser, it is not the same size as it should be (or at least I think).
This is the image that I took encoded and displayed in browser:

Regardless of the phone, (Also tested on a Galaxy SII), the issue still remains. Do you guys have any idea what may be happening? Here are some ideas that I have but not sure... 1. Compressing the image too much - or when it compresses it changes something 2.Base64 encoding/decoding is messing up the photo and not displaying it correctly 3. When i place the image in an image view it modifies the size.
Again, It seems like that full image is not getting sent through, cause there is no way an image even a Galaxy sII image looks that small.
Here is the code that I am using: Android:
// CONVERT:
ByteArrayOutputStream bao = new ByteArrayOutputStream();
picture.compress(Bitmap.CompressFormat.PNG, 100, bao);
Log.d(TAG, "AFTER. Height: " + picture.getHeight() + " Width: " + picture.getWidth());
final byte[] ba = bao.toByteArray();
//encode to string
String photoTest = Base64.encodeToString(ba, Base64.DEFAULT);
//Camera on activity for result - save it as a bmp and place in imageview
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
if (requestCode == CAMERA_PIC_REQUEST) {
// do something
}
if (resultCode == Activity.RESULT_OK) {
Log.d(TAG, "result ok");
Bundle b = data.getExtras();
picture = (Bitmap) b.get("data");
imageView.setImageBitmap(picture);
}
}
IMAGE VIEW IN ANDROID:
<ImageView
android:id="@+id/imageView1"
android:layout_width="100dp"
android:layout_height="100dp"
android:src="@drawable/icon"/>
PHP:
$image = base64_decode($_POST['image_data']);
Thank you for your help!
picture.compress()that is converting the image. Bare in mind this is not about "quality", as this tends to be used in terms of how compressed the image is. The problem you have is that the image is being resized, or "resampled" at some point in your client side code. You should take the compression code out, try and get it to work without it, then start playing with compression. – DaveRandom Dec 27 '11 at 18:07android.provider.MediaStore.ACTION_IMAGE_CAPTURE);and I have to includeEXTRA_OUTPUTotherwise android automatically scales my image down. I will post my full answer once i figure it out. – Splitusa Dec 27 '11 at 18:34