Android Camera Intent with Crop

后端 未结 2 1443
太阳男子
太阳男子 2020-12-15 01:35

I\'ve been trying to crop and resize an image while taking a picture through the camera intent but don\'t understand what I\'m doing wrong here -- can\'t get the cropped ima

2条回答
  •  有刺的猬
    2020-12-15 02:11

    Try to remove this line: intent.putExtra("return-data", true);

    You dont need to pass this in. That line of code will allow you to retrieve your bitmap by the data intent. In this case, your getting your bitmap from a URI.

提交回复
热议问题