views:

3

answers:

0

Hi All I have added camera in my application for capturing image and saving it into phone memory or SDCard. I want to change color combination of image (captured by camera ) while it will show preview of it. can anyone help me for this. I am using following piece of code for activating camera into application ImageView TakePhotoButton = (ImageView) findViewById(R.id.TakePhoto); TakePhotoButton.setOnClickListener(new OnClickListener() { public void onClick(View v1) {
Intent intent = new Intent("android.media.action.IMAGE_CAPTURE");
startActivityForResult(intent, 1);

        }                   
    });

I am able to captured image but i want control on preview generated by camera so that I can change colors of preview image to visualise some effects of color. Suggestions are most welcome. Thank you in advance.