Android开发实现ImageView加载摄像头拍摄的大图功能
本文实例讲述了Android开发实现ImageView加载摄像头拍摄的大图功能。分享给大家供大家参考,具体如下:
这个方法是从官方demo中摘录的,在此记录学习。
权限
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <uses-feature android:name="android.hardware.camera2" android:required="false" />
另:关于权限控制还可参考:Android Manifest功能与权限描述大全
设置变量保存文件存储路径
private String mCurrentPhotoPath; /** * 拍照flag */ private static final int REQUEST_IMAGE_CAPTURE_O = 2;
创建存储路径及文件名
/** * 创建拍摄的图片的存储路径及文件名 * @return * @throws IOException */ private File createImageFile() throws IOException{ String timeStamp = new SimpleDateFormat("yyyyMMdd_HHmmss").format(new Date()); String imageFileName = "JPEG_" + timeStamp + "_"; File storageDir = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES); Log.d("TrainingFirstActivity", "storageDir:" + storageDir); File image = File.createTempFile(imageFileName, ".jpg", storageDir); mCurrentPhotoPath = image.getAbsolutePath(); Log.d("image.getAbsolutePath()", image.getAbsolutePath() + ""); return image; }
拍摄图片并保存
Intent takePictureOintent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE); if (takePictureOintent.resolveActivity(getPackageManager()) != null){ File photoFile = null; try { photoFile = createImageFile(); } catch (IOException e) { e.printStackTrace(); } if (photoFile != null){ takePictureOintent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(photoFile)); startActivityForResult(takePictureOintent, REQUEST_IMAGE_CAPTURE_O); } }
处理并压缩拍照结果,takePhotoThenToShowImg是一个ImageView控件
@Override protected void onActivityResult(int requestCode, int resultCode, Intent data) { if (requestCode == REQUEST_IMAGE_CAPTURE_O && resultCode == RESULT_OK){ int targetW = takePhotoThenToShowImg.getWidth(); int targetH = takePhotoThenToShowImg.getHeight(); /* Get the size of the image */ BitmapFactory.Options bmOptions = new BitmapFactory.Options(); bmOptions.inJustDecodeBounds = true; BitmapFactory.decodeFile(mCurrentPhotoPath, bmOptions); int photoW = bmOptions.outWidth; int photoH = bmOptions.outHeight; /* Figure out which way needs to be reduced less */ int scaleFactor = 1; if ((targetW > 0) || (targetH > 0)) { scaleFactor = Math.min(photoW/targetW, photoH/targetH); } /* Set bitmap options to scale the image decode target */ bmOptions.inJustDecodeBounds = false; bmOptions.inSampleSize = scaleFactor; bmOptions.inPurgeable = true; /* Decode the JPEG file into a Bitmap */ Bitmap bitmap = BitmapFactory.decodeFile(mCurrentPhotoPath, bmOptions); /* Associate the Bitmap to the ImageView */ takePhotoThenToShowImg.setImageBitmap(bitmap); galleryAddPic(); } }
最后可以将拍摄到的照片添加到Media Provider的数据库中,以便图库或者其他程序读取照片
/** * 将拍摄到的照片添加到Media Provider的数据库中 */ private void galleryAddPic(){ Intent mediaScanIntent = new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE); File f = new File(mCurrentPhotoPath); Uri contentUri = Uri.fromFile(f); mediaScanIntent.setData(contentUri); this.sendBroadcast(mediaScanIntent); }
如果只需要缩略图的话,只要调摄像头拍摄直接处理结果就行
@Override protected void onActivityResult(int requestCode, int resultCode, Intent data) { if (requestCode == REQUEST_IMAGE_CAPTURE && resultCode == RESULT_OK){//展示图片 Bundle extras = data.getExtras(); Bitmap imageBitmap = (Bitmap) extras.get("data"); takePhotoThenToShowImg.setImageBitmap(imageBitmap); } }
更多关于Android相关内容感兴趣的读者可查看本站专题:《Android拍照与图片处理技巧总结》、《Android图形与图像处理技巧总结》、《Android开发入门与进阶教程》、《Android调试技巧与常见问题解决方法汇总》、《Android基本组件用法总结》、《Android视图View技巧总结》、《Android布局layout技巧总结》及《Android控件用法总结》
希望本文所述对大家Android程序设计有所帮助。
- Android使用控件ImageView加载图片的方法
- Android 自定义圆形头像CircleImageView支持加载网络图片的实现代码
- 详解Android中Glide与CircleImageView加载圆形图片的问题
- android imageview图片居中技巧应用
- Android实现ImageView图片双击放大及缩小
- Android中ImageView使用网络图片资源的方法
- Android开发之imageView图片按比例缩放的实现方法
- Android实现ImageView阴影和图层效果
- Android实现ImageView图片缩放和拖动
- Android自定义ImageView实现在图片上添加图层效果
相关文章
Android 中使用ContentObserver模式获取短信用正则自动填充验证码
这篇文章主要介绍了Android 中使用ContentObserver模式获取短信用正则自动填充验证码,首先使用了ContentObserver监听短信,然后从短信中用正则的分组去拿到验证码,具体实现代码大家参考下本文2017-02-02Android AlarmManager实现定时循环后台任务
这篇文章主要为大家详细介绍了Android AlarmManager实现定时循环后台任务,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下2019-06-06Android Camera+SurfaceView自动聚焦防止变形拉伸
这篇文章主要为大家介绍了Android自定义相机Camera+SurfaceView实现自动聚焦防止变形拉伸详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪2023-01-01
最新评论