IllegalArgumentException: x + width must be <= bitmap.width() in android
问题 I want to crop an image with in a margin (10,50,10,50),(left,top,right,bottom) respectively of an imageview. Here is my code 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); ie, if my imageview is of dimension 200X300.then i