簡體   English   中英

android在發送到服務器之前壓縮圖像大小

[英]android compress image size before sending to server

我已經嘗試了互聯網上的多種解決方案,但都沒有成功,當我上傳到應用程序時,如何更改圖像大小? 我希望它的方式是,當我上傳 2MB 文件時,它會以大小 = 50kb 的方式發送到服務器。 請幫幫我

@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
    super.onActivityResult(requestCode, resultCode, data);
    //get image thumbnail
    if (requestCode == REQUEST_CODE_PICKER && resultCode == RESULT_OK && data != null) {

        ArrayList<Image> images = data.getParcelableArrayListExtra(ImagePickerActivity.INTENT_EXTRA_SELECTED_IMAGES);

         absolutePath = null;
        // do your logic ....
        for (Image img : images) {
            Log.v(LOG_TAG, img.getName() + " " + img.getPath());
            absolutePath = img.getPath();
            absolutePath = String.valueOf(Compressor.getDefault(getContext()).compressToFile(imageFile));
            Bundle bundleExtras = data.getExtras();
            image = (Bitmap) bundleExtras.get("data");
        }
        consultantProfileImageView.setImageBitmap(getBitmapFromPath(absolutePath));
        new UploadConsultantProfileImageTask(getContext(), absolutePath).execute();
        postConsultant();
    }

}

public File getBitmapFromPath(String filePath) {
    File imageFile = new File(filePath);
    Bitmap imageBitmap = null;
    imageBitmap = BitmapFactory.decodeFile(filePath);
    ByteArrayOutputStream bos = new ByteArrayOutputStream();
    InputStream in = new ByteArrayInputStream(bos.toByteArray());
    File compressedImageFile = Compressor.getDefault(getContext()).compressToFile(imageFile);
    if (compressedImageFile.exists()) {
        imageBitmap = BitmapFactory.decodeFile(compressedImageFile.getAbsolutePath());
    }

    return compressedImageFile;
}

嘗試在下面使用它會將圖像壓縮到 80%。 您可以根據需要更改壓縮百分比。

public File getBitmapFromPath(String filePath) {
        File imageFile = new File(filePath);
        OutputStream  fout = new FileOutputStream(file);
        Bitmap bitmap= BitmapFactory.decodeFile(filePath);
        bitmap.compress(CompressFormat.JPEG, 80, fout); 
        fout.flush();
        fout.close();

        return imageFile;
}

試試

int compressionRatio = 2; //1 == originalImage, 2 = 50% compression, 4=25% compress
File file = new File (imageUrl);
try {
    Bitmap bitmap = BitmapFactory.decodeFile (file.getPath ());
    bitmap.compress (Bitmap.CompressFormat.JPEG, compressionRatio, new FileOutputStream (file));
}
catch (Throwable t) {
    Log.e("ERROR", "Error compressing file." + t.toString ());
    t.printStackTrace ();
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM