i'm trying to make a camera app that overlays an image over a camera and only shows the camera feed from the transparent part of the image.
the problem i'm getting is that at either side of the image the camera is showing(which i dont want).
Does anyone know if there is anyway to have a SurfaceView holding feed from a devices camera, that when you add a frame overlay (So that the camera is visible through transparent parts of the overlay), you can make the camera feed visible either side of the overlay hidden. Either by covering it with black, or by resizing the SurfaceView so that it is no wider or higher than the overlay image itself?
Relevant code:
CameraActivity.java
public class CameraActivity extends Activity {
private Camera camera;
private CameraPreview cPrev;
private Camera.Parameters params;
private ImageView ivFrame, black1, black2;
private RelativeLayout rl;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
//get rid of title bar
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
//set content to CameraView
setContentView(R.layout.activity_camera);
rl = (RelativeLayout)findViewById(R.id.imagesLayout);
ivFrame = (ImageView)findViewById(R.id.frame);
//get camera instance
camera = getCameraInstance();
params = camera.getParameters();
params.set("orientation", "landscape");
//set preview
cPrev = new CameraPreview(this, camera, ivFrame);
RelativeLayout preview = (RelativeLayout) findViewById(R.id.camera_preview);
preview.addView(cPrev);
rl.bringToFront();
}
@Override
protected void onResume(){
super.onResume();
cPrev.onResume(this);
}
@Override
protected void onPause(){
super.onPause();
camera.release();
}
@Override
protected void onStop(){
super.onStop();
}
/** A safe way to get an instance of the Camera object. */
public static Camera getCameraInstance(){
Camera c = null;
try {
c = Camera.open(); // attempt to get a Camera instance
}
catch (Exception e){
// Camera is not available (in use or does not exist)
}
return c; // returns null if camera is unavailable
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.activity_camera, menu);
return true;
}
}
CameraPreview.java
public class CameraPreview extends SurfaceView implements SurfaceHolder.Callback {
private SurfaceHolder mHolder;
private Camera mCamera;
public static final String TAG = "CameraPreview";
private ImageView ivFrame;
public CameraPreview(Context context, Camera camera,ImageView f) {
super(context);
mCamera = camera;
// Install a SurfaceHolder.Callback so we get notified when the
// underlying surface is created and destroyed.
mHolder = getHolder();
mHolder.addCallback(this);
// deprecated setting, but required on Android versions prior to 3.0
mHolder.setType(SurfaceHolder.SURFACE_TYPE_PUSH_BUFFERS);
ivFrame = f;
}
protected void onResume(Activity context){
}
@Override
protected void onDraw(Canvas canvas){
super.onDraw(canvas);
ivFrame.setImageResource(R.drawable.queen);
}
public void surfaceCreated(SurfaceHolder holder) {
setWillNotDraw(false);
// The Surface has been created, now tell the camera where to draw the preview.
try {
mCamera.setPreviewDisplay(holder);
mCamera.startPreview();
} catch (IOException e) {
Log.d(TAG, "Error setting camera preview: " + e.getMessage());
}
}
public void surfaceDestroyed(SurfaceHolder holder) {
// empty. Take care of releasing the Camera preview in your activity.
}
public void surfaceChanged(SurfaceHolder holder, int format, int w, int h) {
// If your preview can change or rotate, take care of those events here.
// Make sure to stop the preview before resizing or reformatting it.
if (mHolder.getSurface() == null){
// preview surface does not exist
return;
}
// stop preview before making changes
try {
mCamera.stopPreview();
//add image to preview
} catch (Exception e){
// ignore: tried to stop a non-existent preview
}
// set preview size and make any resize, rotate or
// reformatting changes here
// start preview with new settings
try {
mCamera.setPreviewDisplay(mHolder);
mCamera.startPreview();
} catch (Exception e){
Log.d(TAG, "Error starting camera preview: " + e.getMessage());
}
}
}
Activity_camera.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/backLayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal" >
<RelativeLayout
android:id="@+id/camera_preview"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<RelativeLayout
android:id="@+id/imagesLayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<ImageView
android:id="@+id/frame"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
</ImageView>
</RelativeLayout>
</RelativeLayout>
</RelativeLayout>
any help would be appreciated