I have Written the code for Editing the Image now I want to save that edited image in the sdcard
image=(ImageView)findViewById(R.id.image);
Intent intent = getIntent();
File sdCardDirectory = Environment.getExternalStorageDirectory();
photo = (Bitmap) intent.getParcelableExtra("photoo");
image.setImageBitmap(photo);
Try this,
Ok first of all you need to give Write Permissions in AndroidManifest.xml as below,
Now lets look at the code that actually write your edited image,
It is quite simple.