我当前正在尝试通过android拍照,并将图像保存在以后将其上传到数据库的位置。在在线上阅读了一些教程之后,我发现我使用的代码仅保存所捕获图像的低分辨率缩略图,而不是完整图像。
是否可以获取完整尺寸的图像进行保存?由于使用数据库的软件的设置方式,因此格式必须为Jpeg。
按预期方式拍照:
private void _openCamera_Click(object sender, EventArgs e)
{
Intent intent = new Intent(MediaStore.ActionImageCapture);
StartActivityForResult(intent, 0);
}
在这里图像最终被保存为缩略图。理想情况下,此部分将是我们修改的唯一代码:
protected override void OnActivityResult(int requestCode, [GeneratedEnum] Result resultCode, Intent data)
{
base.OnActivityResult(requestCode, resultCode, data);
Bitmap bitmap = (Bitmap)data.Extras.Get("data");
this._photo.SetImageBitmap(bitmap);
MemoryStream memStream = new MemoryStream();
bitmap.Compress(Bitmap.CompressFormat.Jpeg, 100, memStream);
this._tempImageData = memStream.ToArray();
}
更新:SushiHangover的响应完美无缺。为了处理缓存的图像,我使用了以下代码:
protected override void OnActivityResult(int requestCode, [GeneratedEnum] Result resultCode, Intent data)
{
base.OnActivityResult(requestCode, resultCode, data);
if (resultCode != Result.Ok || requestCode != 88)
{
return;
}
Bitmap bitmap = BitmapFactory.DecodeFile(cacheName);
this._photo.SetImageBitmap(bitmap);
MemoryStream memStream = new MemoryStream();
bitmap.Compress(Bitmap.CompressFormat.Jpeg, 100, memStream);
this._tempImageData = memStream.ToArray();
}
答案 0 :(得分:1)
这是正式版Android Photo Basics的真正简化的 C#版本,用于全尺寸照片。
注意:这会将完整尺寸的照片保存在应用的沙盒cache
目录中
<?xml version="1.0" encoding="UTF-8" ?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<cache-path name="cache_images" path="." />
</paths>
application
打开/关闭标签内添加文件提供器 <provider android:name="android.support.v4.content.FileProvider" android:authorities="${applicationId}.fileprovider" android:exported="false" android:grantUriPermissions="true">
<meta-data android:name="android.support.FILE_PROVIDER_PATHS" android:resource="@xml/file_paths"></meta-data>
</provider>
cacheName = Path.Combine(CacheDir.AbsolutePath, Path.GetTempFileName());
using (var cacheFile = new Java.IO.File(cacheName))
using (var photoURI = FileProvider.GetUriForFile(this, PackageName + ".fileprovider", cacheFile))
using (var intent = new Intent(MediaStore.ActionImageCapture))
{
intent.PutExtra(MediaStore.ExtraOutput, photoURI);
StartActivityForResult(intent, 88);
}
注意:cacheName
是类级别的变量,在OnActivityResult方法中将需要它
protected override void OnActivityResult(int requestCode, [GeneratedEnum] Result resultCode, Intent data)
{
if (resultCode == Result.Ok && requestCode == 88)
{
// Do something with your photo...
Log.Debug("SO", cacheName );
}
}