-(IBAction)changeslidervalue:(id)
{
imageView.alpha = sliderValue.value;
}
I am using this code, can anyone help me or solve my issue..
Thanks in Advance...
-(IBAction)changeslidervalue:(id)
{
imageView.alpha = sliderValue.value;
}
I am using this code, can anyone help me or solve my issue..
Thanks in Advance...
Have you tried changing the screen brightness instead of changing the videos alpha?
Try this code:
-(IBAction)changeslidervalue:(id)
{
[[UIScreen mainScreen] setBrightness:sliderValue.value];
}
Apple developer have one demo GLImageProcessing for images related processing. You can find it here http://developer.apple.com/library/ios/#samplecode/GLImageProcessing/Introduction/Intro.html. Import your image here and after processing you need to save it again in image view. Actually this demo is working with OpenGL ES api. (If this demo is use full for you comment here,i will provide you code for change EAGLView to image view)