1

imageview の余白 (10,50,10,50),(left,top,right,bottom) でそれぞれ画像をトリミングしたい。これが私のコードです

Bitmap bitmap = Bitmap.createBitmap(imgView.getWidth(),imgView.getHeight(), Bitmap.Config.ARGB_8888);

Bitmap result = Bitmap.createBitmap(bitmap, (imgView.getLeft() + 10),
                imgView.getTop() + 50,imgView.getRight() - 10,imgView.getBottom() - 50);
bitmap.recycle();
Canvas canvas = new Canvas(result);
imgView.draw(canvas);

つまり、イメージビューのサイズが 200X300 の場合、指定された領域のみでビットマップ イメージを取得したいと考えています。これを実行しようとすると、エラーが表示されます。

 FATAL EXCEPTION: main
 java.lang.IllegalArgumentException: x + width must be <= bitmap.width()
    at android.graphics.Bitmap.createBitmap(Bitmap.java:410)
    at android.graphics.Bitmap.createBitmap(Bitmap.java:383)
    at android.view.View.performClick(View.java:2485)
    at android.view.View$PerformClick.run(View.java:9080)
    at android.os.Handler.handleCallback(Handler.java:587)
    at android.os.Handler.dispatchMessage(Handler.java:92)
    at android.os.Looper.loop(Looper.java:130)
    at android.app.ActivityThread.main(ActivityThread.java:3687)
    at java.lang.reflect.Method.invokeNative(Native Method)
    at java.lang.reflect.Method.invoke(Method.java:507)
    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:867)
    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:625)
    at dalvik.system.NativeStart.main(Native Method)

どうすればこれを解決できますか?

ありがとう

4

2 に答える 2

1

これを試して、動作するかどうかを確認してください:

// using this method createBitmap(source, x, y, width, height)
Bitmap result = Bitmap.createBitmap(bitmap, 10,
            50, imgView.getWidth() - 20, imgView.getHeight() - 100);

getLeftその他は、その親でのビューの位置を取得するために使用されます。ビットマップの寸法ではありません。

于 2012-10-12T06:02:04.503 に答える
1
    Bitmap resultBitmap = Bitmap.createBitmap(sourceBitmap, 0, 0,
            sourceBitmap.getWidth() - 1, sourceBitmap.getHeight() - 1);

リストと同様に、0 から始まるため、幅はビットマップ幅 - 1 である必要があります。

于 2013-09-09T09:26:25.887 に答える