欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

Android拍照和获取相册图片

程序员文章站 2024-03-06 21:16:50
之前遇到各种拍照啊,获取相册图片之类,都是直接去度娘,要么之前的代码复制下,没好好总结过。  再也不要问度娘了,再也不用一堆博客里找啊找了。。。 ...

之前遇到各种拍照啊,获取相册图片之类,都是直接去度娘,要么之前的代码复制下,没好好总结过。 

再也不要问度娘了,再也不用一堆博客里找啊找了。。。 

----------------------------------------------我是正文的分割线----------------------------------------------------------- 

一个一个来,先说调用手机相机拍照(最简单版):

 camerabutton.setonclicklistener(new view.onclicklistener() {
 @override
 public void onclick(view v) {
  intent intent=new intent(mediastore.action_image_capture);
  startactivityforresult(intent,take_photo);
 }
});

protected void onactivityresult(int requestcode, int resultcode, intent data) {
 super.onactivityresult(requestcode, resultcode, data);
 if(resultcode==result_ok){
  bundle bundle=data.getextras();
  bitmap bitmap=(bitmap)bundle.get("data");
  photoimageview.setimagebitmap(bitmap);
 }
}

 这个方法简单是简单了,但是得到的图片却是缩略图,通常都非常模糊,很多时候并不满足我们的要求,我们需要的是获取拍照所得照片的原图。

而通常想要获取拍照所得原图的方法,我们首先会自定义图片名称,确认图片存储位置,之后根据图片位置uri,自然可以获得原图bitmap。代码如 

 /**
  * 自定义图片名,获取照片的file
  */
 private file createimgfile(){
  //确定文件名
  string filename="img_"+new simpledateformat("yyyymmdd_hhmmss").format(new date())+".jpg";
//  file dir=getexternalfilesdir(environment.directory_pictures);
//  file dir=environment.getexternalstoragepublicdirectory(environment.directory_pictures);
//  file dir=environment.getexternalstoragedirectory();
  file dir;
  if(environment.getexternalstoragestate().equals(environment.media_mounted)){
   dir=environment.getexternalstoragedirectory();
  }else{
   dir=getexternalfilesdir(environment.directory_pictures);
  }
  file tempfile=new file(dir,filename);
  try{
   if(tempfile.exists()){
    tempfile.delete();
   }
   tempfile.createnewfile();
  }catch (ioexception e){
   e.printstacktrace();
  }
  //获取文件路径
  photopath=tempfile.getabsolutepath();
  return tempfile;
 }
 
 //拍照
 camerabutton.setonclicklistener(new view.onclicklistener() {
  @override
  public void onclick(view view) {
   //只是加了一个uri作为地址传入
   intent intent=new intent(mediastore.action_image_capture);
   file photofile=createimgfile();
   photouri=uri.fromfile(photofile);
   intent.putextra(mediastore.extra_output,photouri);
   startactivityforresult(intent,take_photo);
  }
 });

 代码应该非常清楚,我们定义了图片名称,将uri传入,那么我们在onactivityresult中就可以得到这个uri,之后岂不是可以直接根据uri得到bitmap了?例如这样: 
bitmap bitmap=mediastore.images.media.getbitmap(getcontentresolver(),photouri);
photoimageview.setimagebitmap(bitmap);这样做起来是没错的,可惜通常我们手机的摄像头大多非常高清,拍摄出来的照片如果直接加载到手机内存里面,恐怕就啦啦啦啦啦啦了…… 

那么,我们唯一能想到的,就只有开始压缩图片了: 

 /**
  * 压缩图片
  */
 private void setimagebitmap(){
  //获取imageview的宽和高
  int targetwidth=photoimageview.getwidth();
  int targetheight=photoimageview.getheight();

  //根据图片路径,获取bitmap的宽和高
  bitmapfactory.options options=new bitmapfactory.options();
  options.injustdecodebounds=true;
  bitmapfactory.decodefile(photopath,options);
  int photowidth=options.outwidth;
  int photoheight=options.outheight;

  //获取缩放比例
  int insamplesize=1;
  if(photowidth>targetwidth||photoheight>targetheight){
   int widthratio=math.round((float)photowidth/targetwidth);
   int heightratio=math.round((float)photoheight/targetheight);
   insamplesize=math.min(widthratio,heightratio);
  }

  //使用现在的options获取bitmap
  options.insamplesize=insamplesize;
  options.injustdecodebounds=false;
  bitmap bitmap=bitmapfactory.decodefile(photopath,options);
  photoimageview.setimagebitmap(bitmap);
 }

以上就是调取相机拍照的全部代码,当然write_external_storage这个权限肯定是要加的。

还有一件经常出现的事,就是可能你拍照之后,照片并没有及时出现在手机相册中,而是需要手机重启之后才会出现。其实我们只需要发送一条广播,就可以将图片添加进手机相册,代码如下: 

 //将图片添加进手机相册
 private void galleryaddpic(){
  intent mediascanintent=new intent(intent.action_media_scanner_scan_file);
  mediascanintent.setdata(photouri);
  this.sendbroadcast(mediascanintent);
 }

困难已经过去,相对而言,从相册里选取照片,简直再简单不过,我相信只要看下代码就会懂了,不信你看: 

 //从相册获取照片
 albumbutton.setonclicklistener(new view.onclicklistener() {
  @override
  public void onclick(view view) {
   //intent intent=new intent(intent.action_pick);
   intent intent=new intent(intent.action_get_content);
   intent.settype("image/*");
   startactivityforresult(intent,pick_photo);
  }
 });
 
 protected void onactivityresult(int requestcode, int resultcode, intent data) {
  super.onactivityresult(requestcode, resultcode, data);
  if(resultcode==result_ok){
   switch (requestcode){
    case take_photo:
     setimagebitmap();
     galleryaddpic();
     break;
    case pick_photo:
     //data中自带有返回的uri
     photouri=data.getdata();
     //获取照片路径
     string[] filepathcolumn={mediastore.audio.media.data};
     cursor cursor=getcontentresolver().query(photouri,filepathcolumn,null,null,null);
     cursor.movetofirst();
     photopath=cursor.getstring(cursor.getcolumnindex(filepathcolumn[0]));
     cursor.close();
     //有了照片路径,之后就是压缩图片,和之前没有什么区别
     setimagebitmap();
     break;
   }
  }
 }

 很简单吧,我们在onactivityresult()中根据data获取到了所选图片的uri,之后只要一步查询,就可以得到图片路径。而有了照片路径,就没有任何问题了。

整个demo到这里就结束了,接下来的内容可以不必看,demo下载链接: 

自问自答时间:
 问:sd卡是什么?因为在我创建file的时候,目录文件默认使用的是environment.getexternalstoragedirectory(),而在使用之前是需要检测状态的, 也就是这句environment.getexternalstoragestate().equals(environment.media_mounted),询问sd卡是否正确安装。我用了一部新手机,依旧是正确安装的。
答:手机是有内置sd卡的,所以哪怕我买了新手机,但是依旧可以检测到sd卡的存在。 

一个有意思的回答是说,内置的sd卡类似于电脑硬盘,外界的sd卡类似于移动硬盘,但也不确定是否正确。 

问:创建file的时候,几个不同的目录文件分别什么意思?有什么不同?

答:直接看测试结果吧,environment.getexternalstoragedirectory()的地址:/storage/emulated/0 
environment.getexternalstoragepublicdirectory()的地址:/storage/emulated/0/pictures
getexternalfilesdir()的地址:/storage/emulated/0/android/data/com.example.notificationapp/files/pictures 

问:从相册选取照片的时候,好像有个两个intent都可以,有什么区别?

答:intent intent=new intent(intent.action_pick);
 intent intent=new intent(intent.action_get_content); 

这两个确实都可以从相册选取照片,但是具体有什么区别,好吧,我没搞明白。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。