0

在我的应用程序中,我想用相机拍照并将它们保存在文件中。照片质量在我的应用程序中非常重要,所以当我压缩保存它时,图像质量会丢失。这是我的代码:

 protected override void OnActivityResult(int requestCode, Result resultCode, Intent data)
    {
       base.OnActivityResult(requestCode, resultCode, data);
        FileOutputStream outStream = null;
       saveFullImage();
       if ((requestCode == TAKE_PICTURE))
       {

           if (data != null)
           {
               if (data.HasExtra("data"))
               { 
                   Bitmap pic = (Bitmap)data.Extras.Get("data");



                   System.IO.MemoryStream baos = new System.IO.MemoryStream();
                   pic.Compress(Bitmap.CompressFormat.Png, 100, baos);
                   byte[] byte_img_data = baos.ToArray();
                   outStream = new FileOutputStream(outputFileUri.Path);

                   outStream.Write(byte_img_data);
                   outStream.Close();



               }
           }
       }
    }

请帮我。谢谢。

4

2 回答 2

0
pic.Save("yourfilenamehere.png", ImageFormat.Png);

如果你知道你在一个文件上写就足够了(检查 Image 类 Save 方法是否有其他重载)。

这种压缩是无损的,因此您不应该以这种方式丢失任何细节。

于 2012-10-08T13:28:46.603 回答
0

谢谢你们。

使用以下代码不会改变图片细节:

var mediaScanIntent = new Intent(Intent.ActionMediaScannerScanFile);
var contentUri = Android.Net.Uri.FromFile(_file);
mediaScanIntent.SetData(contentUri);
this.SendBroadcast(mediaScanIntent);
于 2012-10-09T05:12:23.377 回答