0
私は表面図(親親和親にマッチする)で活動しており、その半分はボタンによって隠されています。キャプチャした画像の可視部分のみを保存することは可能ですか?私はサーフェイスビューを小さくしようとしましたが、プレビューはこの場合回転されているか、伸びています。私はがあなたの要件のと同じですリンクの下ところでカメラのプレビュー(サーフェイスビュー)から画像をトリミングし、実際の画像の代わりに保存する方法instagram appのようなbtカメラをキャプチャ?
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_camera"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="uz.pages.yangiuz10.activity.CameraActivity">
<SurfaceView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/surface_camera"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<View
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"/>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="@color/colorBackgroundText">
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/button_shot"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:src="@drawable/shot_btn"
android:background="@null"
android:onClick="onPictureCapture"/>
</RelativeLayout>
</LinearLayout>
</RelativeLayout>
それが画像をキャプチャしますなぜあなたはsurfaceView幅&高さ[match_parent] .XML..thatの中を使用フルスクリーンモードで...たとえあなたがsurfaceViewの下の部分を隠してしまったとしても、 –
は実行時にフルサイズの表面ビューのプレビューを取る...同じ問題があった。あなたはbutton.andで隠すレイアウトと私は隠す –
私は私のキャプチャした画像を切り取った。私はしなかったそのための解決策が見つかりました。 –