I have retrevied Bitmap from fragment & I placed bitmap(decoded bytearray) in Imageview, I want to crop this bitmap
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.fr_editcrop, container, false);
cropphoto = (ImageView)view.findViewById(R.id.cropphoto);
title = (TextView)view.findViewById(R.id.title);
title.setText("Crop");
crop = (Button)view.findViewById(R.id.crop);
cancel = (Button)view.findViewById(R.id.cancel);
tmp = getArguments().getString("PHOTO");
byte [] encodeByte=Base64.decode(tmp,Base64.DEFAULT);
bmp=BitmapFactory.decodeByteArray(encodeByte, 0, encodeByte.length);
cropphoto.setImageBitmap(bmp);
Width = cropphoto.getWidth();
Height = cropphoto.getHeight();
Call Bitmap.createBitmap(Bitmap source, int x, int y, int width, int height)
See reference.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With