亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

Android 無預覽拍照功能

 更新時間:2018年02月07日 11:33:28   作者:WideRespect  
最近小編接到一個項目,遇到這樣的需求,要求在后臺拍照并保存功能,也就是無預覽拍照功能,下面小編給大家?guī)砹藢嵗a,需要的朋友參考下

最近得到了一個需求,在后臺拍照并保存

public void onTakePhotoClicked() {
   final SurfaceView preview = new SurfaceView(this);
   SurfaceHolder holder = preview.getHolder();
   // deprecated setting, but required on Android versions prior to 3.0
holder.setType(SurfaceHolder.SURFACE_TYPE_PUSH_BUFFERS);
 holder.addCallback(new SurfaceHolder.Callback() {
     @Override
     //The preview must happen at or after this point or takePicture fails
     public void surfaceCreated(SurfaceHolder holder) {
       Log.d(TAG, "Surface created");
        camera = null;
       try {
         camera = Camera.open(Camera.CameraInfo.CAMERA_FACING_BACK);
         Log.d(TAG, "Opened camera");
         try {
           camera.setPreviewDisplay(holder);
         } catch (IOException e) {
           throw new RuntimeException(e);
         }
         camera.startPreview();
         Log.d(TAG, "Started preview");
      //延時拍照
         ThreadUtils.postOnUiThreadDelayed(new Runnable() {
           @Override
           public void run() {
             Log.e("zgj","開始拍照");
             camera.takePicture(null, null, CameraService.this);
           }
         },5000);
       } catch (Exception e) {
         if (camera != null)
           camera.release();
         throw new RuntimeException(e);
       }
     }
     @Override
     public void surfaceDestroyed(SurfaceHolder holder) {}
     @Override
     public void surfaceChanged(SurfaceHolder holder, int format, int width, int height) {}
   });
   WindowManager wm = (WindowManager)getSystemService(Context.WINDOW_SERVICE);
   WindowManager.LayoutParams params = new WindowManager.LayoutParams(
       1, 1, //Must be at least 1x1
       WindowManager.LayoutParams.TYPE_SYSTEM_OVERLAY,
       0,
       //Don't know if this is a safe default
       PixelFormat.UNKNOWN);
   //Don't set the preview visibility to GONE or INVISIBLE
   wm.addView(preview, params);
 }
 @Override
 public void onPictureTaken(byte[] bytes, Camera camera) {
   Log.e("zgj", "拍照結束");
   File pictureDir = Environment.getExternalStorageDirectory();
   if (pictureDir == null) {
     Log.d("zgj",
         "Error creating media file, check storage permissions!");
     return;
   }
   try {
     String pictureName = "ssss.png";
     File file = new File(pictureDir + "/pic/");
     if (!file.exists()) {
       file.mkdir();
     }
     file = new File(pictureDir + "/pic/" + pictureName);
     FileOutputStream fos = new FileOutputStream(file);
     fos.write(bytes);
     fos.close();
   } catch (FileNotFoundException e) {
     Log.d("zgj", "File not found: " + e.getMessage());
   } catch (IOException e) {
     Log.d("zgj", "Error accessing file: " + e.getMessage());
   }
 }

總結

以上所述是小編給大家介紹的Android 無預覽拍照功能,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對腳本之家網(wǎng)站的支持!

相關文章

最新評論