2015-09-04 112 views
1

我編寫了這個代碼,用相機拍攝一張照片,然後將其轉換爲jpeg文件並將其作爲ParseFile上傳到Parse.com。如何設置使用android相機拍攝的照片的尺寸和質量?

問題是,圖片真的很小(153 x 204像素),真的很低質量。

我需要圖片的質量至少爲5MP並將其裁剪爲300x300像素。

這是我現在使用的代碼。

@Override 
    protected void onCreate(Bundle savedInstanceState) { 
     super.onCreate(savedInstanceState); 
     setContentView(R.layout.activity_add_picture); 

     img = (ImageView) findViewById(R.id.imgV); 

     Intent cameraIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE); 

     startActivityForResult(cameraIntent, CAMERA_PIC_REQUEST); 

    } 


    @Override 
    protected void onActivityResult(int requestCode, int resultCode, Intent data) { 
     byte[] image_byte_array; 
       ParseObject post_object = new ParseObject("Gallery"); 
      Bundle extras = data.getExtras(); 
      Bitmap image = (Bitmap) extras.get("data"); 
      ByteArrayOutputStream stream = new ByteArrayOutputStream(); 
      image.compress(Bitmap.CompressFormat.JPEG, 100, stream); 
      image_byte_array = stream.toByteArray(); 
      ParseFile picture_file = new ParseFile("Picture.jpg", image_byte_array); 
      picture_file.saveInBackground(); 
      post_object.put("photo", picture_file); 
      post_object.saveInBackground(); 
     } 

在此先感謝。

回答

1

檢查this answer here.

相機意圖默認返回一個縮略圖,所以你需要 獲取完整圖像。

德里克的解決方案是正確的,但你必須改進它。

真正的果汁在於獲取完整圖像,其發生在這裏 -

thumbnail = MediaStore.Images.Media.getBitmap(
          getContentResolver(), imageUri); 
        imgView.setImageBitmap(thumbnail); 
        imageurl = getRealPathFromURI(imageUri);  

完整路徑將由getRealPathFromURI()給出。

+0

謝謝,我選擇你的答案是正確的,因爲你鏈接的答案幫助了我,謝謝;) – drilonreqica

+0

小費 - 嘗試谷歌多一點。在android中,除非它是一個非常新的API;所有的問題已經得到了答覆。對我們來說這樣一個很好的支持基地:) – Darpan

+0

是的謝謝你,我會在未來嘗試更多 – drilonreqica

1

檢查以下

http://developer.android.com/guide/topics/media/camera.html#intent-image

您必須添加一個Uri這是文件的URI來存儲照片

intent.putExtra(MediaStore.EXTRA_OUTPUT, fileUri); // set the image file name 

全樣本的鏈接

@Override 
public void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.activity_add_picture); 

    img = (ImageView) findViewById(R.id.imgV); 

    // create Intent to take a picture and return control to the calling application 
    Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE); 

    fileUri = getOutputMediaFileUri(MEDIA_TYPE_IMAGE); // create a file to save the image 
    intent.putExtra(MediaStore.EXTRA_OUTPUT, fileUri); // set the image file name 

    // start the image capture Intent 
    startActivityForResult(intent, CAPTURE_IMAGE_ACTIVITY_REQUEST_CODE); 
} 

/** Create a file Uri for saving an image or video */ 
private static Uri getOutputMediaFileUri(int type){ 
     return Uri.fromFile(getOutputMediaFile(type)); 
} 

/** Create a File for saving an image or video */ 
private static File getOutputMediaFile(int type){ 
    // To be safe, you should check that the SDCard is mounted 
    // using Environment.getExternalStorageState() before doing this. 

    File mediaStorageDir = new File(Environment.getExternalStoragePublicDirectory(
       Environment.DIRECTORY_PICTURES), "MyCameraApp"); 
    // This location works best if you want the created images to be shared 
    // between applications and persist after your app has been uninstalled. 

    // Create the storage directory if it does not exist 
    if (! mediaStorageDir.exists()){ 
     if (! mediaStorageDir.mkdirs()){ 
      Log.d("MyCameraApp", "failed to create directory"); 
      return null; 
     } 
    } 

    // Create a media file name 
    String timeStamp = new SimpleDateFormat("yyyyMMdd_HHmmss").format(new Date()); 
    File mediaFile; 
    if (type == MEDIA_TYPE_IMAGE){ 
     mediaFile = new File(mediaStorageDir.getPath() + File.separator + 
     "IMG_"+ timeStamp + ".jpg"); 
    } else if(type == MEDIA_TYPE_VIDEO) { 
     mediaFile = new File(mediaStorageDir.getPath() + File.separator + 
     "VID_"+ timeStamp + ".mp4"); 
    } else { 
     return null; 
    } 

    return mediaFile; 
} 
+0

我不想將圖片保存到我的手機存儲中,我只需要將它直接上傳到Parse.com服務器,並顯示我已經顯示的代碼,所以如果您有任何想法,我將不勝感激我做錯了什麼。 – drilonreqica

+0

通過使用Camera Intent,您無法避免將圖片保存到存儲。如果你真的想跳過存儲,你必須實現自己的相機。 –

+0

'onActivityResult'中返回的'data'只是一個縮略圖,這就是爲什麼它很小。 –

相關問題