// リソースからbitmapを作成 Bitmap image = BitmapFactory.decodeResource(context.getResources(), R.drawable.image); // 画像サイズ取得 int width = image.getWidth(); int height = image.getHeight(); // リサイズ後サイズ int w = 100; int h = 100; // 切り取り領域となるbitmap生成 Bitmap clipArea = Bitmap.createBitmap(w, h, Bitmap.Config.ARGB_8888); // 角丸矩形を描写 Canvas c = new Canvas(clipArea); c.drawRoundRect(new RectF(0, 0, w, h), 10, 10, n