如何使用相机设置捕获的图像以适合固定高度和宽度的Imageview

时间:2014-09-26 09:56:50

标签: android android-camera

您好我已经关注Android开发者网站并试图以编程方式从摄像头实现捕获图像。我能够捕获图像并在ImageView中设置它。
但是当我将图像设置为ImageView时,我得到的图像宽度和高度都较小。相反,我希望从库或相机捕获的图像应该适合ImageView元素布局。

enter image description here

MyXML文件如下:

 <ImageView
            android:id="@+id/cmp_camera"
            android:layout_height="200dp"
            android:layout_width="match_parent"
            android:layout_weight="1"
            android:layout_below="@+id/cmp_title"
            android:onClick="openCameraDialog"
            />

由于我将宽度设为match_parent是全屏,因此宽度越来越小。 我的要求是它应该适合ImageView布局。 对于相机编码,我已经按照这个网址:
http://developer.android.com/training/camera/photobasics.html

4 个答案:

答案 0 :(得分:2)

也许你可以尝试imgview.setScaleType(ScaleType.FIT_XY);

从XML中,使用以下语法:android:scaleType="fitXY"

使用Matrix.ScaleToFit FILL缩放图像,执行以下操作:

  

独立地在X和Y中缩放,以便src与dst完全匹配。这可能会改变src的宽高比。

请参阅Android Documentation

答案 1 :(得分:2)

试试这个,

 android:scaleType="fitXY"

到xml文件中的imageview。

答案 2 :(得分:1)

ImageView.setImageBitmap(bitmap);


<ImageView
        android:id="@+id/cmp_camera"
        android:layout_height="200dp"
        android:layout_width="match_parent"
        android:layout_weight="1"
        android:layout_below="@+id/cmp_title"
        android:onClick="openCameraDialog"
        android:scaleType="fitXY"
        />

答案 3 :(得分:0)

使用此方法来适应您的图像并获得圆角

public static Bitmap getRoundedCornerBitmap(Bitmap bitmap) {
    Bitmap output = Bitmap.createBitmap(bitmap.getWidth(),
            bitmap.getHeight(), Config.ARGB_8888);
    Canvas canvas = new Canvas(output);

    final int color = 0xff424242;
    final Paint paint = new Paint();
    final Rect rect = new Rect(0, 0, bitmap.getWidth(), bitmap.getHeight());
    final RectF rectF = new RectF(rect);
    final float roundPx = 19;

    paint.setAntiAlias(true);
    canvas.drawARGB(0, 0, 0, 0);
    paint.setColor(color);
    canvas.drawRoundRect(rectF, roundPx, roundPx, paint);

    paint.setXfermode(new PorterDuffXfermode(Mode.SRC_IN));
    canvas.drawBitmap(bitmap, rect, rect, paint);

    return output;
}

将图像设置为ImageView

 addimg.setImageBitmap(getRoundedCornerBitmap(docode("Give path of your image here")));

将图像保存在SD卡或手机存储器中,使用其路径对其进行解码。

 public static Bitmap decodeFile(File f) {
    try {
        BitmapFactory.Options o = new BitmapFactory.Options();
        o.inJustDecodeBounds = true;
        BitmapFactory.decodeStream(new FileInputStream(f), null, o);

        // Find the correct scale value. It should be the power of 2.
        final int REQUIRED_SIZE = 70;
        int width_tmp = o.outWidth, height_tmp = o.outHeight;
        int scale = 1;
        while (true) {
            if (width_tmp / 2 < REQUIRED_SIZE
                    || height_tmp / 2 < REQUIRED_SIZE)
                break;
            width_tmp /= 2;
            height_tmp /= 2;
            scale++;
        }

        BitmapFactory.Options o2 = new BitmapFactory.Options();
        o2.inSampleSize = scale;
        return BitmapFactory.decodeStream(new FileInputStream(f), null, o2);
    } catch (FileNotFoundException e) {
        Log.e("decodeFile", "" + e);
    }

    return null;
}