如何在Android中获取Imageview位置

问题描述 投票:0回答:1

我想裁剪从FrameLayout(@+id/previewFrame)获得的图片作为重叠的ImageView(@+id/guide_line_view)黄色指导线边界。

Guide Line Image

我获得了ImageView的位置,并从ImageView的边界沿的PreviewFrame相机中裁剪了图像。

但是imageview的位置与可见位置不同,因此裁剪后的图像与我期望的不符

ImageView(@+id/guide_line_view)是这样的矩形边框xml

我的作物怎么了。我在Google搜索了7个小时的stackoverflow,但没有任何帮助。

@ drawable / guide_line.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <stroke
        android:width="1dp"
        android:color="#FFFF00"
        android:dashGap="8dp"
        android:dashWidth="30dp"/>
    <corners android:radius="8dp" />
</shape>

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity"
    android:orientation="vertical">


    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="2">
        <FrameLayout
            android:id="@+id/previewFrame"
            android:layout_width="match_parent"
            android:layout_height="match_parent">
        </FrameLayout>

        <androidx.constraintlayout.widget.ConstraintLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent">

            <ImageView
                android:id="@+id/guide_line_view"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:padding="100dp"
                android:background="@drawable/guide_line"
                app:layout_constraintBottom_toBottomOf="parent"
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintHorizontal_bias="0.498"
                app:layout_constraintStart_toStartOf="parent"
                app:layout_constraintTop_toTopOf="parent" />

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Bring Here"
                android:textColor="#FFFF00"
                android:textSize="20sp"
                app:layout_constraintBottom_toBottomOf="parent"
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintStart_toStartOf="parent"
                app:layout_constraintTop_toBottomOf="@+id/guide_line_view"
                app:layout_constraintVertical_bias="0.207" />
        </androidx.constraintlayout.widget.ConstraintLayout>

    </FrameLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">

        <Button
            android:id="@+id/take"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="takePicture"
            tools:ignore="ButtonStyle" />

        <Button
            android:id="@+id/close"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="close"
            tools:ignore="ButtonStyle" />

    </LinearLayout>
</LinearLayout>

要获得图像查看位置

在引导变量以下声明为全局int

而且我在onWindowFocusChanged进行计算。

guide_left = imageview.getLeft();
guide_top = imageview.getTop();
guide_width = imageview.getWidth();
guide_height = imageview.getHeight();

我也尝试过这个。依此类推。

int[] guide_location = new int[2];

imageview.getLocationOnScreen(guide_location);
int guide_left = guide_location[0];
int guide_top = guide_location[1];

作物位图

public void takePicture() {
        cameraView.capture(new Camera.PictureCallback(){
            public void onPictureTaken(byte[] data, Camera camera){
                try {
                    Bitmap bitmap = BitmapFactory.decodeByteArray(data, 0, data.length);
                    Matrix matrix = new Matrix();
                    matrix.postRotate(90);
                    Bitmap r_bitmap = Bitmap.createBitmap(bitmap, 0, 0, bitmap.getWidth(), bitmap.getHeight(), matrix, true);


                    // crop the image
                    Bitmap cropped_bitmap = Bitmap.createBitmap(r_bitmap, guide_left, guide_top, guide_width, guide_height);

我保存了cropped_bitmap并检查它是否正确,但不正确。

android android-layout android-imageview
1个回答
0
投票

假设您以4096×2160分辨率拍摄图片,然后在PreviewFrame中进行设置,但是如果您的设备仅具有1920x1080分辨率,则PreviewFrame仅在1920x1080

中测量尺寸

发布后,您想从orgin picture中裁剪指定的矩形,则需要放大crop ratio来自1920x1080 to 4096x2160

---尝试以下---

Bitmap bitmap = BitmapFactory.decodeByteArray(data, 0, data.length);
Matrix matrix = new Matrix();
matrix.postRotate(90);
Bitmap r_bitmap = Bitmap.createBitmap(bitmap, 0, 0, bitmap.getWidth(), bitmap.getHeight(), matrix, true);

// scaled ratio
float ratio = 1f * bitmap.getWidth() / previewFrame.width;

// crop the image
Bitmap cropped_bitmap = Bitmap.createBitmap(r_bitmap,
    (int) (guide_left * ratio),
    (int) (guide_top * ratio),
    (int) (guide_width * ratio), 
    (int) (guide_height * ratio));
© www.soinside.com 2019 - 2024. All rights reserved.