3

私はカメラアプリケーションをやっています。私は正方形の形で画像をキャプチャしてトリミングしています。しかし、私は楕円形または人間の顔の形が必要です。どうして?

4

6 に答える 6

6

次のメソッドを使用し、キャプチャしたビットマップ イメージをこのメソッドに渡しました。そして、それはうまくいきます。

public Bitmap getRoundedShape(Bitmap scaleBitmapImage) {
        int targetWidth = 125;
        int targetHeight = 125;

        Bitmap targetBitmap = Bitmap.createBitmap(targetWidth,
                targetHeight, Bitmap.Config.ARGB_8888);

        Canvas canvas = new Canvas(targetBitmap);
        Path path = new Path();
        path.addCircle(
                ((float) targetWidth - 1) / 2,
                ((float) targetHeight - 1) / 2,
                (Math.min(((float) targetWidth), ((float) targetHeight)) / 2),
                Path.Direction.CCW);

        canvas.clipPath(path);
        Bitmap sourceBitmap = scaleBitmapImage;
        canvas.drawBitmap(
                sourceBitmap,
                new Rect(0, 0, sourceBitmap.getWidth(), sourceBitmap
                        .getHeight()), new Rect(0, 0, targetWidth,
                        targetHeight), p);
        return targetBitmap;
    }

出力は次のとおりです。 画像

于 2013-12-17T07:00:24.707 に答える
4

私は自分のプロジェクトの1つで以下を使用しました。これはあなたを助けるかもしれません。

public  Drawable getRoundedCornerImage(Drawable bitmapDrawable) {
        Bitmap bitmap = ((BitmapDrawable)bitmapDrawable).getBitmap();
        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 = 10;

        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);
        Drawable image = new BitmapDrawable(output);
        return image;

    }
于 2013-03-04T11:23:17.637 に答える
2

com.android.camera.CropImage.java ソースを探索します。円の画像をトリミングできます。

    // if we're circle cropping we'll want alpha which is the third param here
    464    mCroppedImage = Bitmap.createBitmap(width, height,
    465                    mCircleCrop ?
    466                            Bitmap.Config.ARGB_8888 :
    467                            Bitmap.Config.RGB_565);
    468    Canvas c1 = new Canvas(mCroppedImage);
    469    c1.drawBitmap(mBitmap, r, new Rect(0, 0, width, height), null);
    470
    471    if (mCircleCrop) {
    472        // OK, so what's all this about?
    473        // Bitmaps are inherently rectangular but we want to return something
    474        // that's basically a circle.  So we fill in the area around the circle
    475        // with alpha.  Note the all important PortDuff.Mode.CLEAR.
    476        Canvas c = new Canvas (mCroppedImage);
    477        android.graphics.Path p = new android.graphics.Path();
    478        p.addCircle(width/2F, height/2F, width/2F, android.graphics.Path.Direction.CW);
    479        c.clipPath(p, Region.Op.DIFFERENCE);
    480
    481        fillCanvas(width, height, c);
    482    }
于 2013-03-04T11:22:43.533 に答える
1

これで試してみてください...人間の顔の形でトリミングするには

Uri ImageCaptureUri = Uri.fromFile(new File("filepath"); 
Intent intent = new Intent("com.android.camera.action.CROP"); 
intent.setType("image/*"); 
intent.setData(ImageCaptureUri); 
intent.putExtra("outputX", 200); 
intent.putExtra("outputY", 200); 
intent.putExtra("aspectX", 1); 
intent.putExtra("aspectY", 1); 
intent.putExtra("scale", true); 
intent.putExtra("return-data", true); 
startActivityForResult(intent, 1);
于 2013-03-04T11:17:42.260 に答える
0

楕円形の場合は、この Android 関数を試すか、ここからデモをダウンロードしてください

ここに画像の説明を入力

public static Bitmap getOvalCroppedBitmap(Bitmap bitmap, int radius) {
        Bitmap finalBitmap;
        if (bitmap.getWidth() != radius || bitmap.getHeight() != radius)
            finalBitmap = Bitmap.createScaledBitmap(bitmap, radius, radius,
                    false);
        else
            finalBitmap = bitmap;
        Bitmap output = Bitmap.createBitmap(finalBitmap.getWidth(),
                finalBitmap.getHeight(), Bitmap.Config.ARGB_8888);
        Canvas canvas = new Canvas(output);

        Paint paint = new Paint();
        final Rect rect = new Rect(0, 0, finalBitmap.getWidth(),
                finalBitmap.getHeight());

        paint.setAntiAlias(true);
        paint.setFilterBitmap(true);
        paint.setDither(true);
        canvas.drawARGB(0, 0, 0, 0);
        paint.setColor(Color.parseColor("#BAB399"));
        RectF oval = new RectF(0, 0, 130, 150);
        canvas.drawOval(oval, paint);
        paint.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.SRC_IN));
        canvas.drawBitmap(finalBitmap, rect, oval, paint);

        return output;
    }

上記の関数は、プログラムで Android に均一な楕円形を作成します。関数 onCreate 関数を呼び出し、画像を渡して楕円形をビットマップ画像としてトリミングします

続きを読む

于 2017-01-01T10:34:10.790 に答える