在AndroID中,使用摄像头拍照一般有两种方法, 一种是调用系统自带的Camera,另一种是自己写一个摄像的界面。
我们要添加如下权限:
<uses-permission androID:name="androID.permission.WRITE_EXTERNAL_STORAGE"/><uses-permission androID:name="androID.permission.CAMERA"/>
1、调用系统Camera
调用系统自带的Camera主要的步骤为:
(1)构造图片存储的路径名
(2)使用Intent启动Camera Activity
(3)将拍摄的图片写入到文件
(4)将图片显示在MainActivity中
首先,构造图片名:
file filePath = new file(Environment.getExternalStorageDirectory(),"myCamera");if(!filePath.exists()){ filePath.mkdirs();}filename = new file(filePath,System.currentTimeMillis() + ".jpg");try{ if(!filename.exists()){ filename.createNewfile(); }}catch (Exception e){ e.printstacktrace();}
然后,启动Camera Activity:
// intent用来启动系统自带的CameraIntent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);// 将系统Camera的拍摄结果写入到文件 intent.putExtra(MediaStore.EXTRA_OUTPUT,Uri.fromfile(filename));// 启动intent对应的Activity,返回默认消息 startActivityForResult(intent,Activity.DEFAulT_KEYS_DIALER);
最后,将图片显示在MainActivity内。这时,我们通过重载onActivityResult()方法来获取Camera返回的消息。
@OverrIDeprotected voID onActivityResult(int requestCode,int resultCode,Intent data){ if(requestCode == Activity.DEFAulT_KEYS_DIALER){ // MainActivity接收Camera返回的消息,然后将已经写入的图片显示在ImageVIEw内 imageVIEw.setimageURI(Uri.fromfile(filename)); }}
完整代码为:
import androID.app.Activity;import androID.content.Intent;import androID.net.Uri;import androID.os.Bundle;import androID.os.Environment;import androID.provIDer.MediaStore;import androID.util.Log;import androID.vIEw.VIEw;import androID.Widget.button;import androID.Widget.ImageVIEw;import java.io.file;public class MainActivity extends Activity { private file filename = null; private button button; private ImageVIEw imageVIEw; @OverrIDe protected voID onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentVIEw(R.layout.activity_main); button = (button)findVIEwByID(R.ID.button); imageVIEw = (ImageVIEw)findVIEwByID(R.ID.imageVIEw); button.setonClickListener(new VIEw.OnClickListener() { @OverrIDe public voID onClick(VIEw v) { file filePath = new file(Environment.getExternalStorageDirectory(),"myCamera"); if(!filePath.exists()){ filePath.mkdirs(); } filename = new file(filePath,System.currentTimeMillis() + ".jpg"); try{ if(!filename.exists()){ filename.createNewfile(); } }catch (Exception e){ e.printstacktrace(); } // intent用来启动系统自带的Camera Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE); // 将系统Camera的拍摄结果写入到文件 intent.putExtra(MediaStore.EXTRA_OUTPUT,Uri.fromfile(filename)); // 启动intent对应的Activity,返回默认消息 startActivityForResult(intent,Activity.DEFAulT_KEYS_DIALER); } }); } @OverrIDe protected voID onActivityResult(int requestCode,Intent data){ if(requestCode == Activity.DEFAulT_KEYS_DIALER){ // MainActivity接收Camera返回的消息,然后将已经写入的图片显示在ImageVIEw内 imageVIEw.setimageURI(Uri.fromfile(filename)); } }}
2、自己写一个摄像界面
自己写摄像的界面,主要应用了SurfaceVIEw来显示摄像机的画面。然后通过一个button来保存当前的画面。
同样的,我们需要添加camera和SDCard权限:
<uses-permission androID:name="androID.permission.WRITE_EXTERNAL_STORAGE"/><uses-permission androID:name="androID.permission.CAMERA"/>
首先,我们初始化这个SurfaceVIEw,为这个SurfaceVIEw添加一个对应的Callback即可:
private SurfaceVIEw surfaceVIEw;private SurfaceHolder.Callback callback;surfaceVIEw = (SurfaceVIEw)findVIEwByID(R.ID.surfaceVIEw); callback = new SurfaceHolder.Callback(){ @OverrIDe public voID surfaceCreated(SurfaceHolder holder) { startCamera(); // 用于启动摄像头 } @OverrIDe public voID surfaceChanged(SurfaceHolder holder,int format,int wIDth,int height) { } @OverrIDe public voID surfaceDestroyed(SurfaceHolder holder) { stopCamera(); // 用于关闭摄像头 } }; surfaceVIEw.getHolder().addCallback(callback); // 将Callback绑定到SurfaceVIEw
在启动摄像头的时候,首先打开摄像头连接,然后将其图像输出到SurfaceVIEw上,然后启动摄像头预览即可在SurfaceVIEw上显示摄像头的画面,这里的画面和实际画面相差有90度,所以我们需要将图像旋转90度之后才可以和拍摄的物体方向一致。
在关闭摄像头时,只要停止预览,然后释放摄像头资源即可。
public voID startCamera(){ camera = Camera.open(); try { camera.setPrevIEwdisplay(surfaceVIEw.getHolder()); camera.setdisplayOrIEntation(90); camera.startPrevIEw(); } catch (IOException e) { e.printstacktrace(); }}public voID stopCamera(){ camera.stopPrevIEw(); camera.release(); camera = null;}
最后,是将拍摄到的图片保存到SDCard,我们单击button来拍摄图片,调用Camera.takePicture()方法,其原型为:
/** * Equivalent to takePicture(shutter,raw,null,jpeg). * * @see #takePicture(ShutterCallback,PictureCallback,PictureCallback) */ public final voID takePicture(ShutterCallback shutter,PictureCallback raw,PictureCallback jpeg) { takePicture(shutter,jpeg); }
其中,shutter为按快门瞬间的回调,就是说按快门瞬间会调用ShutterCallback.onShutter()方法。raw是未压缩的图像的回调,即处理图像原始数据的时候会调用PictureCallback.onPictureTaken()方法。jpeg为处理JPEG图片时候的回调,即我们需要将图像数据按照jpg格式保存的时候会调用这个方法,PictureCallback.onPIctureTaken()。这里我们就调用了这个方法,从而将jpg图片存储到SDCard上。
button.setonClickListener(new VIEw.OnClickListener() { @OverrIDe public voID onClick(VIEw v) { camera.takePicture(null,new Camera.PictureCallback() { @OverrIDe public voID onPictureTaken(byte[] data,Camera camera) { try { file filePath = new file(Environment.getExternalStorageDirectory(),"myCamera"); if(!filePath.exists()) { filePath.mkdirs(); } file filename = new file(filePath,System.currentTimeMillis() + ".jpg"); filename.createNewfile(); fileOutputStream fos = new fileOutputStream(filename); fos.write(data); fos.flush(); fos.close(); } catch (IOException e) { e.printstacktrace(); } } }); } });
这样,我们便实现了用SurfaceVIEw预览摄像头画面,点击button将当前预览保存到SDCard中。
完整代码如下:
import androID.app.Activity;import androID.harDWare.Camera;import androID.os.Bundle;import androID.os.Environment;import androID.vIEw.SurfaceHolder;import androID.vIEw.SurfaceVIEw;import androID.vIEw.VIEw;import androID.Widget.button;import java.io.file;import java.io.fileOutputStream;import java.io.IOException;public class MainActivity extends Activity { private Camera camera; private button button; private SurfaceVIEw surfaceVIEw; private SurfaceHolder.Callback callback; @OverrIDe protected voID onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentVIEw(R.layout.activity_main); button = (button)findVIEwByID(R.ID.button); surfaceVIEw = (SurfaceVIEw)findVIEwByID(R.ID.surfaceVIEw); callback = new SurfaceHolder.Callback(){ @OverrIDe public voID surfaceCreated(SurfaceHolder holder) { startCamera(); } @OverrIDe public voID surfaceChanged(SurfaceHolder holder,int height) { } @OverrIDe public voID surfaceDestroyed(SurfaceHolder holder) { stopCamera(); } }; surfaceVIEw.getHolder().addCallback(callback); button.setonClickListener(new VIEw.OnClickListener() { @OverrIDe public voID onClick(VIEw v) { camera.takePicture(null,new Camera.PictureCallback() { @OverrIDe public voID onPictureTaken(byte[] data,Camera camera) { try { file filePath = new file(Environment.getExternalStorageDirectory(),"myCamera"); if(!filePath.exists()) { filePath.mkdirs(); } file filename = new file(filePath,System.currentTimeMillis() + ".jpg"); filename.createNewfile(); fileOutputStream fos = new fileOutputStream(filename); fos.write(data); fos.flush(); fos.close(); } catch (IOException e) { e.printstacktrace(); } } }); } }); } public voID startCamera(){ camera = Camera.open(); try { camera.setPrevIEwdisplay(surfaceVIEw.getHolder()); camera.setdisplayOrIEntation(90); camera.startPrevIEw(); } catch (IOException e) { e.printstacktrace(); } } public voID stopCamera(){ camera.stopPrevIEw(); camera.release(); camera = null; }}
以上所述是本文给大家介绍的关于AndroID 开发随手笔记之使用摄像头拍照的全部内容,希望大家喜欢。
总结以上是内存溢出为你收集整理的Android 开发随手笔记之使用摄像头拍照全部内容,希望文章能够帮你解决Android 开发随手笔记之使用摄像头拍照所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)