我发现自己需要帮助。
我正在尝试开发这个拍照的简单应用程序(哇,现在这是原创!)。一切都好。我唯一需要的是有一个CIRCULAR CAMERA PREVIEW。
我的camerapreview类(扩展了surfaceview)放置在一个框架布局内,这基本上是我的相机预览。众所周知,这是一个矩形的形状。由于我有更大的应用程序计划,我需要将相机预览设为圆形(例如,有人可以拍摄某人的脸,我可以在周围画一些图纸。)
现在,我不知道如何继续。我尝试了不同的东西,使用xml创建一个形状并将其设置为我的框架布局的背景,但这只是不起作用。
在Google上花了几个小时寻求解决方案后,我决定放弃并来到这里。
所以,如果有人知道任何事情,请告诉我们:)我希望我足够清楚,如果需要,请不要犹豫要求澄清。
答案 0 :(得分:3)
简单方法:
1)没有为priview设置表面
2)捕获原始数据
3)转换为位图并制作circle
4)显示(例如,在imegeview上)
仅供参考:
public class CameraRoundPriview extends ImageView {
private Camera camera;
private Bitmap bitmap = null;
private int mPreviewWidth, mPreviewHeight;
boolean mCameraOn = false;
public CameraRoundPriview(Context context, AttributeSet attrs) {
super(context, attrs);
}
private Bitmap getclip() {
//clip
Bitmap output = Bitmap.createBitmap(bitmap.getHeight(),
bitmap.getHeight(),
Config.ARGB_8888);
Canvas canvas = new Canvas(output);
final int color = 0xff424242;
final Paint paint = new Paint();
final Rect rect = new Rect(0, 0, bitmap.getHeight(),
bitmap.getHeight());
paint.setAntiAlias(true);
canvas.drawARGB(0, 0, 0, 0);
canvas.drawCircle(bitmap.getHeight() / 2,
bitmap.getHeight() / 2,
bitmap.getHeight() / 2, paint);
paint.setXfermode(new PorterDuffXfermode(Mode.SRC_IN));
canvas.drawBitmap(bitmap, rect, rect, paint);
//rotate
android.hardware.Camera.CameraInfo info = new android.hardware.Camera.CameraInfo();
android.hardware.Camera.getCameraInfo(getCameraID(), info);
int rotation = activity.getWindowManager().getDefaultDisplay().getRotation();
int degrees = 0;
switch (rotation) {
case Surface.ROTATION_0:
degrees = 0;
break;
case Surface.ROTATION_90:
degrees = 90;
break;
case Surface.ROTATION_180:
degrees = 180;
break;
case Surface.ROTATION_270:
degrees = 270;
break;
}
int result = degrees;
if (android.os.Build.VERSION.SDK_INT < android.os.Build.VERSION_CODES.LOLLIPOP){
if (info.facing == Camera.CameraInfo.CAMERA_FACING_FRONT) {
result = (info.orientation + degrees) % 360;
result = (360 - result) % 360; // compensate the mirror
} else { // back-facing
result = (info.orientation - degrees + 360) % 360;
}
}
Matrix matrix = new Matrix();
matrix.postRotate(result);
Bitmap scaledBitmap = Bitmap.createScaledBitmap(output,output.getWidth(),output.getHeight(),true);
Bitmap rotatedBitmap = Bitmap.createBitmap(scaledBitmap , 0, 0, scaledBitmap.getWidth(), scaledBitmap .getHeight(), matrix, true);
return rotatedBitmap;
}
private void showImage(){
if ((bitmap != null)){
this.setImageBitmap(getclip());
}
}
public boolean onClickCamera(){
if (mCameraOn){
mCameraOn = false;
cameraStop();
}else{
mCameraOn = true;
cameraStart();
}
return mCameraOn;
}
private void cameraStop(){
if (camera == null) return;
camera.setPreviewCallback(null);
camera.release();
camera = null;
}
private int getCameraID(){
// specify camera id
return 0;
}
private void cameraStart(){
Camera camera = Camera.open(getCameraID());
final Camera.Size previewSize = camera.getParameters().getPreviewSize();
mPreviewWidth = previewSize.width;
mPreviewHeight = previewSize.height;
try {
camera.setPreviewCallback(new PreviewCallback() {
public void onPreviewFrame(byte[] data, Camera camera_call) {
ByteArrayOutputStream outstr = new ByteArrayOutputStream();
Rect rect = new Rect(0, 0, mPreviewWidth, mPreviewHeight);
YuvImage yuvimage=new YuvImage(data,ImageFormat.NV21,mPreviewWidth,mPreviewHeight,null);
yuvimage.compressToJpeg(rect, 50, outstr);
bitmap = BitmapFactory.decodeByteArray(outstr.toByteArray(), 0, outstr.size());
showImage();
camera_call.addCallbackBuffer(data);
}
});
} catch (Exception e) {}
camera.startPreview();
this.camera=camera;
}
}
答案 1 :(得分:1)
您可以在相机预览上叠加ImageView
。将SurfaceView
和ImageView
放在FrameLayout
match_parent
之内,图片必须位于顶部。
设置为中间带有透明圆圈的黑色图像。
答案 2 :(得分:0)
这很简单,如下所示: 这是用于camerax或camera2 API
注意:您必须具有透明背景。
您必须具有如下所示的xml文件。
res = attr() if callable(attr := getattr(mydog, attr_name)) else attr
也不要忘记在style.xml中声明
<com.RoundedCameraPreview
android:id="@+id/viewFinder"
android:background="#00000000"
app:scaleType="fillCenter"
android:layout_width="match_parent"
android:layout_height="match_parent" />
这样编写代码
<declare-styleable name="PreviewView">
<attr name="isRound" format="boolean" />
</declare-styleable>