0

我已经在我的应用程序中实现了Fotoapparat库。为了用一只手操作整个应用程序,我试图让 CameraView 在纵向模式下成为父 ConstraintLayout。如下图所示,CameraView 本身是横向的,但是整个 Fragment 的父 ConstraintLayout 是纵向模式,这样用户就可以单手操作应用: 单手抓拍横向 可以看到 CameraView 是以 lanscape 为模型,当然这意味着质量会有所下降。

然后我捕获图像并在下一个片段中显示捕获的图像。如您所见,捕获的图像现在是纵向模式: 捕获的图像以纵向显示

正如你所看到的不同,我也拍摄了智能手机的塑料盖。左右角非常适合。但是图像顶部和底部的像素比前一个片段的预览中显示的要多。

我创建了 Fotoapparart 对象,例如:

fotoapparat = Fotoapparat
                .with(activity)
                .into(cameraView)
                .focusView(focusView)
                .sensorSensitivity(highestSensorSensitivity())
                .focusMode(firstAvailable(
                        FocusModeSelectorsKt.continuousFocusPicture(),
                        FocusModeSelectorsKt.autoFocus()))
                .lensPosition(back())
                .build();

我的布局是这样的:

<io.fotoapparat.view.CameraView
    android:id="@+id/myapp_camera_view"
    android:layout_width="0dp"
    android:layout_height="0dp"
    android:layout_marginStart="@dimen/myapp_border_margin"
    android:layout_marginEnd="@dimen/myapp_border_margin"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintDimensionRatio="1.778"
    app:layout_constraintBottom_toTopOf="@+id/myapp_border"
    app:layout_constraintTop_toBottomOf="@id/myapp_holder"
    app:layout_constraintVertical_bias="0.5">

    <io.fotoapparat.view.FocusView
        android:id="@+id/myapp_focus_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
    />

</io.fotoapparat.view.CameraView>

在这里我有 takePhoto 功能:

void takePicture(final boolean fotoapparatIsStopped) {
    if (!fotoapparatIsStopped) {
        PhotoResult photoResult = fotoapparat.takePicture();

        photoResult.toBitmap()
        .whenDone(new WhenDoneListener<BitmapPhoto>() {
            @Override
            public void whenDone(@Nullable BitmapPhoto photo) {
                this.bitmapPhoto = photo;
            }
        });
    }
}

版本:Fotoapparat 2.4.0 Java SDK 8 Android Studio 3.2

我哪里错了?

或者换句话说:

如何在拿着相机/智能手机人像的同时捕捉风景作物?

4

1 回答 1

1

我认为 Fotoapparat 没有提供开箱即用的功能。您可能必须通过旋转位图本身来手动完成:

// rotate Bitmap by means of rotation matrix    
public void whenDone(@Nullable BitmapPhoto photo) {
    Matrix rotationMatrix = new Matrix();
    rotationMatrix.postRotate(phi); // int phi is the angle, here 90

    Bitmap landscapeBitmap = Bitmap.createBitmap(photo.bitmap, 0, 0, photo.bitmap.getWidth(), photo.bitmap.getHeight(), rotationMatrix, true);
    this.bitmapPhoto = new BitmapPhoto(landscapeBitmap, 0);
}
于 2018-11-13T11:56:13.637 回答