반응형
[안드로이드] SurfaceView Camera 서페이스뷰 이용한 카메라 기능
[출처 : http://webnautes.tistory.com/822 ]
http://www.tutorialspoint.com/android/android_camera.htm 에 있는 예제를 수정해서 만들었습니다..
AndroidManifest.xml 파일에 아래 빨간색 4줄을 추가해줍니다.
회색으로 칠해진 2줄은 카메라 영상 결과를 보여줄 액티비티를 적어준 것입니다.
- <?xml version="1.0" encoding="utf-8"?>
- <manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="com.example.webnautes.camera1" >
- <uses-permission android:name="android.permission.CAMERA" />
- <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
- <uses-feature android:name="android.hardware.camera" />
- <uses-feature android:name="android.hardware.camera.autofocus" />
- <application
- android:allowBackup="true"
- android:icon="@mipmap/ic_launcher"
- android:label="@string/app_name"
- android:supportsRtl="true"
- android:theme="@style/AppTheme" >
- <activity android:name=".MainActivity" >
- <intent-filter>
- <action android:name="android.intent.action.MAIN" />
- <category android:name="android.intent.category.LAUNCHER" />
- </intent-filter>
- </activity>
- <activity android:name=".ResultActivity" >
- </activity>
- </application>
- </manifest>
메인 액티비티의 레이아웃 파일입니다. activity_main.xml
카메라 프리뷰를 보여줄 SurfaceView와 카메라 촬영시 사용될 버튼이 정의되어 있습니다.
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- tools:context=".MainActivity">
- <SurfaceView
- android:id="@+id/surfaceView"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_above="@+id/button"
- android:layout_alignParentLeft="true"
- android:layout_alignParentTop="true" />
- <Button
- android:id="@+id/button"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentBottom="true"
- android:layout_alignParentLeft="true"
- android:layout_alignParentRight="true"
- android:text="사진찍기" />
- </RelativeLayout>
다음은 결과를 보여줄 레이아웃 파일입니다. result.xml
결과 이미지를 보여주기 위한 imageview가 정의되어 있습니다.
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical" >
- <ImageView
- android:id="@+id/imageView1"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- />
- </LinearLayout>
메인 액티비티입니다. MainActivity.java
카메라 프리뷰를 보여주다가 버튼을 클릭하면 파일로 저장합니다.
- package com.example.webnautes.camera1;
- import android.app.Activity;
- import android.content.Intent;
- import android.graphics.PixelFormat;
- import android.hardware.Camera;
- import android.os.Bundle;
- import android.view.Surface;
- import android.view.SurfaceHolder;
- import android.view.SurfaceView;
- import android.view.View;
- import android.widget.Button;
- import android.widget.Toast;
- import java.io.FileNotFoundException;
- import java.io.FileOutputStream;
- import java.io.IOException;
- public class MainActivity extends Activity
- implements SurfaceHolder.Callback {
- @SuppressWarnings("deprecation")
- Camera camera;
- SurfaceView surfaceView;
- SurfaceHolder surfaceHolder;
- Button button;
- String str;
- @SuppressWarnings("deprecation")
- Camera.PictureCallback jpegCallback;
- @SuppressWarnings("deprecation")
- @Override
- protected void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.activity_main);
- button = (Button) findViewById(R.id.button);
- button.setOnClickListener(new View.OnClickListener() {
- @Override
- public void onClick(View v) {
- camera.takePicture(null, null, jpegCallback);
- }
- });
- getWindow().setFormat(PixelFormat.UNKNOWN);
- surfaceView = (SurfaceView) findViewById(R.id.surfaceView);
- surfaceHolder = surfaceView.getHolder();
- surfaceHolder.addCallback(this);
- surfaceHolder.setType(SurfaceHolder.SURFACE_TYPE_PUSH_BUFFERS);
- jpegCallback = new Camera.PictureCallback() {
- @Override
- public void onPictureTaken(byte[] data, Camera camera) {
- FileOutputStream outStream = null;
- try {
- str = String.format("/sdcard/%d.jpg",
- System.currentTimeMillis());
- outStream = new FileOutputStream(str);
- outStream.write(data);
- outStream.close();
- }
- catch (FileNotFoundException e) {
- e.printStackTrace();
- }
- catch (IOException e) {
- e.printStackTrace();
- }
- finally {
- }
- Toast.makeText(getApplicationContext(),
- "Picture Saved", Toast.LENGTH_LONG).show();
- refreshCamera();
- Intent intent = new Intent(MainActivity.this,
- ResultActivity.class);
- intent.putExtra("strParamName", str);
- startActivity(intent);
- }
- };
- }
- public void refreshCamera() {
- if (surfaceHolder.getSurface() == null) {
- return;
- }
- try {
- camera.stopPreview();
- }
- catch (Exception e) {
- }
- try {
- camera.setPreviewDisplay(surfaceHolder);
- camera.startPreview();
- }
- catch (Exception e) {
- }
- }
- @Override
- protected void onDestroy() {
- super.onDestroy();
- }
- @SuppressWarnings("deprecation")
- @Override
- public void surfaceCreated(SurfaceHolder holder) {
- camera = Camera.open();
- camera.stopPreview();
- Camera.Parameters param = camera.getParameters();
- param.setRotation(90);
- camera.setParameters(param);
- try {
- camera.setPreviewDisplay(surfaceHolder);
- camera.startPreview();
- }
- catch (Exception e) {
- System.err.println(e);
- return;
- }
- }
- @Override
- public void surfaceChanged(SurfaceHolder holder,
- int format, int width, int height) {
- refreshCamera();
- }
- @Override
- public void surfaceDestroyed(SurfaceHolder holder) {
- camera.stopPreview();
- camera.release();
- camera = null;
- }
- }
결과 이미지를 보여주는 액티비티입니다. ResultActivity.java
스마트폰의 뒤로가기 버튼을 누르면 다시 프리뷰화면을 보여주는 액티비티로 돌아갑니다.
- package com.example.webnautes.camera1;
- import android.app.Activity;
- import android.content.Intent;
- import android.graphics.Bitmap;
- import android.graphics.BitmapFactory;
- import android.graphics.Matrix;
- import android.os.Bundle;
- import android.widget.ImageView;
- public class ResultActivity extends Activity {
- @Override
- protected void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.result);
- Intent intent = getIntent();
- String photoPath = intent.getStringExtra("strParamName");
- BitmapFactory.Options options = new BitmapFactory.Options();
- options.inSampleSize = 4;
- final Bitmap bmp = BitmapFactory.decodeFile(photoPath, options);
- Matrix matrix = new Matrix();
- matrix.preRotate(90);
- Bitmap adjustedBitmap = Bitmap.createBitmap(bmp, 0, 0, bmp.getWidth(),
- bmp.getHeight(), matrix, true);
- ImageView img = (ImageView) findViewById(R.id.imageView1);
- img.setImageBitmap(adjustedBitmap);
- }
- }
반응형
'IT > 안드로이드+JAVA' 카테고리의 다른 글
[안드로이드] 지원되는 사진, 지원하는 프리뷰 크기 구하기 (0) | 2016.09.19 |
---|---|
[안드로이드] 카메라 초점맞추기, SurfaceView (0) | 2016.09.19 |
[안드로이드] DotIndicator를 사용해서 ViewPager에 안내점 표시하기(페이지 표시, 현재페이지) (0) | 2016.09.12 |
[안드로이드 스튜디오] 메모리 공간 늘리기 (0) | 2016.09.06 |
[안드로이드] 커스텀 다이얼로그 예제 (0) | 2016.09.05 |