how to set camera Image orientation?

后端 未结 4 1592
逝去的感伤
逝去的感伤 2020-11-30 10:49

In my application I have added feature of image uploading,It works fine with all the Images except camera image,whenever I browse camera image from gallery and portrait imag

4条回答
  •  情书的邮戳
    2020-11-30 11:15

         String filePath = getRealPathFromURI(getActivity(), selectedImageUri );
         messageText.setText(filePath );
         Picasso.with(getActivity())
                                .load(new File(filePath ))
                                .centerCrop()
                                .resize(60, 60).into( img);
    

提交回复
热议问题