I am trying to upload image to a server without compression, to keep full quality.
I found the following method :
compress(Bitmap.CompressFormat.JPEG, 100, bao);
but it doesn't work in my case. The original image is 2 MB, but once on the server it's only 60 KB.
The image capture is using the following code
Intent i=new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
startActivityForResult(i,camdata);
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
// TODO Auto-generated method stub
super.onActivityResult(requestCode, resultCode, data);
if(resultCode==RESULT_OK) {
Bundle bn=data.getExtras();
bm=(Bitmap)bn.get("data");
imageview.setImageBitmap(bm);
imageview.setClickable(false);
ByteArrayOutputStream bao = new ByteArrayOutputStream();
BitmapFactory.Options options=new BitmapFactory.Options();
options.inSampleSize=6;
final float scale=getResources().getDisplayMetrics().density;
Display dis=getWindowManager().getDefaultDisplay();
int width=dis.getWidth();
scalebmp=Bitmap.createScaledBitmap(bm,400,300, true);
scalebmp.compress(Bitmap.CompressFormat.JPEG, 100, bao);
byte [] ba = bao.toByteArray();
String imgstr=Base64.encodeToString(ba,Base64.DEFAULT);
}
}
use above line instead of below line
see JPEG/JPG is lossless image where PNG never lose his quality in compression hopefully it will work for you