简体   繁体   中英

How to resize image after MediaStore.Images.Media selected image on Android

I currently successfully uploaded an image inside my mobile app to the server. I am trying to figure out how to resize the image and potentially created a thumbnail before I send this to the server. I have tried many methods I found online but none work.

Below is my code so far.

            filePath = data.getData();
            try {
                bitmap = MediaStore.Images.Media.getBitmap(getContentResolver(), filePath);
                imageView.setImageBitmap(bitmap);

            } catch (IOException e) {
                e.printStackTrace();
            }
        }


public void uploadMultipart() {

       SessionHandler mySession = new SessionHandler(this);
       User user = mySession.getUserDetails();

       String title = editText.getText().toString().trim();
       String path = getPath(filePath);
       String studentid = user.studentid;
       String email  = user.email;
       String firstname = user.firstname;
       //Toast.makeText(this, firstname, Toast.LENGTH_SHORT).show();

        try {
            String uploadId = UUID.randomUUID().toString();
            uploadReceiver.setDelegate(this);
            uploadReceiver.setUploadID(uploadId);

            new MultipartUploadRequest(this, uploadId, Constants.UPLOAD_URL)
                    .addFileToUpload(path, "image")
                    .addParameter("title", title)
                    .addParameter("studentid", studentid)
                    .addParameter("firstname", firstname)
                    .addParameter("email", email)

                    //.setNotificationConfig(new UploadNotificationConfig())
                    .setMaxRetries(2)
                    .startUpload();
        } catch (Exception exc) {
            Toast.makeText(this, exc.getMessage(), Toast.LENGTH_SHORT).show();
        }
    }

To compress your image write this method on your activity

public void compressImage(String filePath) {
                try {
                    OutputStream outStream = null;

                   Log.i("filePath",filePath);
                    outStream = new FileOutputStream(filePath);
                    BitmapFactory.Options bmOptions = new BitmapFactory.Options();
                    bmOptions.inSampleSize = 8;
                    bitmap = BitmapFactory.decodeFile(filePath ,bmOptions);

                    bitmap.compress(Bitmap.CompressFormat.JPEG, 50, outStream);


                    outStream.flush();
                    outStream.close();


                    Log.i("file path compress", filePath);

                } catch (Exception e) {

                    Log.i("exception", e.toString());
                }
            }

and call it in your on activity result

@Override 
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    super.onActivityResult(requestCode, resultCode, data);

if(requestCode == TAKE_PHOTO){ //your request code

filePath = data.getData();
        try {

            compressImage(filePath);

            bitmap = MediaStore.Images.Media.getBitmap(getContentResolver(), filePath);
            imageView.setImageBitmap(bitmap);

        } catch (IOException e) {
            e.printStackTrace();
        }
   }
}

You can compress your image as much as you want on the compressImage method.

public Bitmap resizeBitmap(Bitmap bitmap, int newWidth, int newHeight) {
int width = bitmap.getWidth();
int height = bitmap.getHeight();
float scaleWidth = ((float) newWidth) / width;
float scaleHeight = ((float) newHeight) / height;
Matrix matrix = new Matrix();
matrix.postScale(scaleWidth, scaleHeight);

Bitmap resizedBitmap = Bitmap.createBitmap(
    bitmap, 0, 0, width, height, matrix, false);
bitmap.recycle();
return resizedBitmap;

}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM