Мне нужно захватить только изображение, которое находится внутри поля наложения, как показано на рисунке.Мне не нужно все изображение в TextureView.Я новичок в Android, и я не мог найти несколько решений, которые были упомянуты, чтобы захватить только изображение внутри прямоугольной области.Наложение должно быть в центре.Я пытался, но я не мог этого добиться.
Я следовал этому коду - Google Sample-Camera2Basic
Чтобы добавить оверлей, я использовал следующий код:
activity_camera2_basic_fragment.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.example.googlecamera2.AutoFitTextureView
android:id="@+id/texture"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true" />
<LinearLayout
android:id="@+id/surface"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:layout_centerInParent="true"/>
<FrameLayout
android:id="@+id/control"
android:layout_width="match_parent"
android:layout_height="112dp"
android:layout_alignParentBottom="true"
android:layout_alignParentStart="true"
android:background="@color/control_background">
<Button
android:id="@+id/picture"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="@string/picture" />
<ImageButton
android:id="@+id/info"
android:contentDescription="@string/description_info"
style="@android:style/Widget.Material.Light.Button.Borderless"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical|right"
android:padding="20dp"
android:src="@drawable/ic_action_info" />
</FrameLayout>
</RelativeLayout>
Я реализовал onCreateView
следующим образом:
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.fragment_camera2_basic, container, false);
linearLayout = view.findViewById(R.id.surface);
linearLayout.addView(new Rectangle(getActivity()));
return view;
}
РЕДАКТИРОВАТЬ
Rectangle.java
package com.example.googlecamera2;
import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.Rect;
import android.view.View;
public class Rectangle extends View {
Paint paint = new Paint();
public Rectangle(Context context) {
super(context);
}
@Override
public void onDraw(Canvas canvas) {
paint.setColor(Color.GREEN);
paint.setStyle(Paint.Style.STROKE);
paint.setStrokeWidth(6);
Rect rect = new Rect(120, 100, 620, 900);
canvas.drawRect(rect, paint );
}
}
Пожалуйста, предложитекак я могу получить только обрезанное изображение из области наложения и центрировать наложение в окне предварительного просмотра.