我对Fotoapparat库的应用程序非常满意。为了用一只手来操作整个应用程序,我试图将CameraView设置为肖像模式的父ConstraintLayout。如下面的屏幕截图所示,CameraView本身是横向的,但是整个Fragment的父ConstraintLayout是纵向模式,因此用户可以用一只手来操作应用程序: One hand hold to capture landscape 如您所见,CameraView是用lanscape建模的,这当然意味着质量会有所损失。
然后我捕获图像,并在下一个片段中显示捕获的图像。如您所见,捕获的图像现在是纵向模式: Captured images shown in portrait
您可以看到其中的区别,我也在风景中拍摄了智能手机的塑料盖。左右角非常合适。但是图像顶部和底部的像素要比上一个片段中的预览显示的要多。
我创建如下的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
我在做什么错了?
或换句话说:
如何在拿着相机/智能手机肖像的同时捕获风景作物?
答案 0 :(得分:0)
我认为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.getHeight(), photo.bitmap.getWidth(), rotationMatrix, true);
this.bitmapPhoto = new BitmapPhoto(landscapeBitmap, 0);
}