Yes but first I'll tell you what exact the problem When I Zoom In or Zoom Out
the image the at the same time I want to rotate (+-90 deg) or Flip or
Reverse the Image at exact zoom In or Zoom Out Position but that time Image
get reset then perform the respective operation such rotate, flip ,reverse I
wanted to do it simultaneously on UIImage
 
if (btnNames == "Rotate R")
                        {       

                                Angle = deg + 90;
                                imgview.Transform = 
CGAffineTransform.MakeRotation (Angle *
(float)Math.PI / 180);
                                return Angle;
                                
                        } else
                        {
                                Angle = deg - 90;
                                imgview.Transform = 
CGAffineTransform.MakeRotation (Angle *
(float)Math.PI / 180);
                                return Angle;
                        }

reverse
CGAffineTransform transform = CGAffineTransform.MakeScale (-1, 1);
                                imgView.Transform = transform;
                                return  true;

if (flips == false)
                        {
                                CGAffineTransform transform = 
CGAffineTransform.MakeScale (1, -1);
                                imgView.Transform = transform;
                                return  true;
                        } 
this code i implemented it works fine individually perform to operation. but
You Now you what I want to.... 



--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/Problem-while-performing-dual-operation-on-UIImageView-tp4656544p4656546.html
Sent from the MonoTouch mailing list archive at Nabble.com.
_______________________________________________
MonoTouch mailing list
[email protected]
http://lists.ximian.com/mailman/listinfo/monotouch

Reply via email to