Android - сжать растровое изображение перед сохранением его на SDCARD в действии для результата - PullRequest
3 голосов
/ 28 декабря 2011

Я ломал голову над этим, и не очень уверен, что делать. Я пытаюсь сделать следующее: сделать снимок, сжать его до png (сохранить исходные размеры), а затем сохранить его в sdCard. Причина, по которой мне нужно это сделать, заключается в том, что мне нужно снова сжать его, а затем кодировать Base64, чтобы я мог отправить его на сервер. Проблема в том, что 1. файл слишком велик 2. мне не хватает памяти и 3. не уверен, что я делаю это правильно.

Спасибо за вашу помощь

Вот мой код:

@Override
public void onClick(View button) {
    switch (button.getId()) {
        case R.id.cameraButton:
            Intent cameraIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
            cameraIntent.putExtra(android.provider.MediaStore.EXTRA_OUTPUT,
                Uri.fromFile(new File("/sdcard/test.png")));
            startActivityForResult(cameraIntent, CAMERA_PIC_REQUEST);
            break;
        case R.id.galleryButton:
            sendToDatabase();
            break;
    }
}

// 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");

        picture = BitmapFactory.decodeFile("/sdcard/test.png");

        // Create string to place it in sd card
        String extStorageDirectory = Environment
                .getExternalStorageDirectory().toString();
        //create output stream
        OutputStream outputStream = null;
        //create file
        File file = new File(extStorageDirectory, "test.png");
        try {
            outputStream = new FileOutputStream(file);
            picture.compress(Bitmap.CompressFormat.PNG, 80, outputStream);
            //picture.recycle();
            outputStream.flush();
            outputStream.close();
        } catch (IOException e){
            Log.d(TAG, "ERROR");
        }
        imageView.setImageBitmap(picture);
    }
}

public void sendToDatabase() {
    InputStream inputStream = null;

    //get the picture from location
    picture = BitmapFactory.decodeFile("/sdcard/test.png");

    // CONVERT:
    ByteArrayOutputStream outStream = new ByteArrayOutputStream();
    Boolean didItWork = picture.compress(Bitmap.CompressFormat.PNG, 50, outStream);
    picture.recycle();
    if (didItWork = true) {
        Log.d(TAG, "compression worked");
    }
    Log.d(TAG, "AFTER. Height: " + picture.getHeight() + " Width: "
        + picture.getWidth());
    final byte[] ba = outStream.toByteArray();
    try {
        outStream.close();
    } catch (IOException e1) {
        // TODO Auto-generated catch block
        e1.printStackTrace();
    }
}

1 Ответ

13 голосов
/ 28 декабря 2011

Когда вы делаете picture.compress (Bitmap.CompressFormat.PNG, 50, outStream);сжатие не будет работать как PNG без потерь, будет игнорировать настройку качества.Таким образом, параметр 50 не будет работать в этом случае.Поэтому я предлагаю вам изменить CompressFormat.PNG на CompressFormat.JPEG.

...