从相机获取全部质量的图片并上传?

时间:2013-03-10 23:27:56

标签: android image upload android-camera

我正在尝试让我的应用程序上传从手机摄像头拍摄的全高质量图像。我有整个上传工作,除了唯一的问题是生成的图像是一个非常小的位图。我希望能够获得完整质量的图像。谁能帮我?这是我的代码。

public class UploadActivity extends Activity {

    public final static int CAMERA_REQUEST = 1888;
    InputStream is;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_upload);
        Button takePicture = (Button) findViewById(R.id.take_picture_button);
        takePicture.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Intent takePictureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
                startActivityForResult(takePictureIntent, CAMERA_REQUEST);      
            }
        });
        Button uploadButton = (Button) findViewById(R.id.send_button);
        uploadButton.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {

            }
        });
    }

    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        ImageView mImageView = (ImageView) findViewById(R.id.ivUserImage);
        Bundle extras = data.getExtras();
        Bitmap mImageBitmap = (Bitmap) extras.get("data");
        mImageView.setImageBitmap(mImageBitmap);
        new fileUpload().execute(mImageBitmap);
    }

    public class fileUpload extends AsyncTask<Object, Void, Void> {
        @Override
        protected Void doInBackground(Object... param) {
            Bitmap bitmapOrg = (Bitmap) param[0];
            ByteArrayOutputStream bao = new ByteArrayOutputStream();
            bitmapOrg.compress(Bitmap.CompressFormat.JPEG, 90, bao);
            byte[] ba = bao.toByteArray();
            String ba1=Base64.encodeBytes(ba);

            ArrayList<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>();
            nameValuePairs.add(new BasicNameValuePair("image",ba1));

            try {
                HttpClient httpclient = new DefaultHttpClient();
                HttpPost httppost = new HttpPost("http://example.info/appserver/upload.php");
                httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
                HttpResponse response = httpclient.execute(httppost);
                HttpEntity entity = response.getEntity();
                is = entity.getContent();
            } catch(Exception e){
                Log.e("log_tag", "Error in http connection "+e.toString());
            }
            return null;
        }
    }
}

1 个答案:

答案 0 :(得分:0)

当您使用额外的Bitmap时,您将获得图像的缩略图。

您可以在此处找到使用相机的一个很好的示例:https://stackoverflow.com/a/5071133/2045570