2011-12-08 3 views
1

나는 성공하지 못했다. 자바로 할 수는 있지만, C#에서는 약간 다르다. 어떤 도움이라도 좋을 것입니다. 내가 원하는 것은 :Monodroid 카메라로 사진 찍기

  1. 카메라를 시작합니다.
  2. 사진 찍기.
  3. 사진을 이미지보기에서보십시오.
+1

http://stackoverflow.com/questions/8068156/access-to-full-resolution-pictures-from-camera-with-monodroid/8072724#8072724 – mironych

답변

1

나는 이것이 상당히 오래된 질문이라는 것을 알고 있지만, 필자가 사용한 코드로 대답 할 것입니다. 내 경험에 의하면, 모든 장치가 표준 의도를 사용하고 데이터를 OnActivityResult에 반환 할 수있는 것은 아닙니다.

private void TakePicture() 
    {   
     if (PackageManager.HasSystemFeature(PackageManager.FeatureCamera)) 
     { 
      var intent = new Intent(Android.Provider.MediaStore.ActionImageCapture); 
      var file = new File(Android.OS.Environment.GetExternalStoragePublicDirectory(Android.OS.Environment.DirectoryPictures), "PictureTHIS"); 
      if (!file.Exists()) 
      { 
       if (!file.Mkdirs()) 
       { 
        Log.Debug(Constants.LOG_TAG, "Unable to create directory to save photos."); 
        return; 
       } 
      } 
      _file = new File(file.Path + File.Separator + "IMG_" + DateTime.Now.ToString("yyyyMMdd_HHmmss") + ".jpg"); 
      intent.PutExtra(MediaStore.ExtraOutput, Uri.FromFile(_file)); 
      StartActivityForResult(intent, Constants.CAMERA_ACTIVITY); 
     } 
     else 
     { 
      Toast.MakeText(this, "This device does not have a camera, please select an image from another option.", ToastLength.Short).Show(); 
     } 
    } 

의도를 되 돌리지 않는 일부 장치를 다루는 방법에 대한 참고 자료로 사용했습니다. 내가 여기에 같은 질문에 대답 한 http://kevinpotgieter.wordpress.com/2011/03/30/null-intent-passed-back-on-samsung-galaxy-tab/

 protected override void OnActivityResult(int requestCode, Result resultCode, Intent data) 
    { 
     base.OnActivityResult(requestCode, resultCode, data); 
     if (resultCode == Result.Ok) 
     { 
    //checking for camera acitivy, my app allows both gallery and camera for retrieving pictures. 
      if (requestCode == Constants.CAMERA_ACTIVITY) 
      {     
     //some devices do not pass back an intent so your data could be null 
       if (data != null && !string.IsNullOrEmpty(data.DataString)) 
       { 
     //full uri to where the image is on the device. 
     Android.Net.Uri.Parse(data.DataString); 
       } 
       else 
       { 
        //issue where some devices don't pass back correct data from the intent. 
        var uris = GetImagePathFromCamera(); 
        if (uris == null) 
        { 
      //had an issue with some devices with no sd card, so i create the file and store it on the device 
         var orientation = 0; 
         var date = string.Empty; 
      //_file is a java.io.file that is passed in the intent with get extra specified. 
         try 
         { 
          var exif = new ExifInterface(_file.Path); 
          orientation = exif.GetAttributeInt(ExifInterface.TagOrientation, -1); 
          date = exif.GetAttribute(ExifInterface.TagDatetime); 
         } 
         catch { } 

         switch (orientation) 
         { 
          case 6: 
           Helpers.Orientation = 90; 
           break; 
          case 3: 
           Helpers.Orientation = 180; 
           break; 
          case 8: 
           Helpers.Orientation = 270; 
           break; 
          default: 
           Helpers.Orientation = 0; 
           break; 
         } 

         ContentValues values = new ContentValues(); 
         values.Put(Android.Provider.MediaStore.Images.Media.InterfaceConsts.DisplayName, _file.Name); 
         values.Put(Android.Provider.MediaStore.Images.Media.InterfaceConsts.DateTaken, date); 
         values.Put(Android.Provider.MediaStore.Images.Media.InterfaceConsts.MimeType, "image/jpeg"); 
         values.Put(Android.Provider.MediaStore.Images.Media.InterfaceConsts.Orientation, Helpers.Orientation); 
         values.Put(Android.Provider.MediaStore.Images.Media.InterfaceConsts.Data, _file.Path); 

         var uri = ContentResolver.Insert(Android.Provider.MediaStore.Images.Media.ExternalContentUri, values); 
         //uri returned is the path to the image on the device 
        } 
        else 
        { 
         //uris is a list of uri's specifying the image taken and its thumbnail 
        } 
       }; 
      } 
     } 
     else 
    { 
    //notify user the camera was cancelled if you want 
    } 
} 
관련 문제