Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i want to crop an image present in sdcard .My code is:

Intent intent = new Intent("com.android.camera.action.CROP");

        Uri  uriOfImageToCrop = Uri.parse(Environment.getExternalStorageDirectory()+"/bookpage.jpg");
        intent.setDataAndType(uriOfImageToCrop, "image/*");
        intent.putExtra("outputX", 200);
        intent.putExtra("outputY", 200);
        intent.putExtra("aspectX", 1);
        intent.putExtra("aspectY", 1);
        intent.putExtra("scale", true);
        intent.putExtra("noFaceDetection", true);
        intent.putExtra(MediaStore.EXTRA_OUTPUT, uriOfImageCrop);
        startActivity(intent);

But it showing the following exception: java.lang.IllegalStateException: Target host must not be null, or set in parameters. can anybody help me please.

share|improve this question

1 Answer

Android doesn't include a crop API anymore. You need to create your own or import one like : https://github.com/lvillani/android-cropimage

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.