Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • How to rotate image in mac os

    • 0
    • 2
    • 2
    • 1
    • 0
    • 0
    • 0
    • 0
    • 944
    Comment on it
    1. -(NSImage*)rotateImage:(CGFloat)degrees
    2. {
    3. NSImage *_image = [YourImageController image];
    4. NSRect imageBounds = {NSZeroPoint, [_image size]};
    5.  
    6. NSBezierPath *boundsPath = [NSBezierPath bezierPathWithRect:imageBounds];
    7.  
    8. NSAffineTransform *transform = [NSAffineTransform transform];
    9.  
    10. [transform rotateByDegrees:degrees];
    11. [boundsPath transformUsingAffineTransform:transform];
    12.  
    13. NSRect rotatedBounds = {NSZeroPoint, [boundsPath bounds].size};
    14.  
    15. NSImage *rotatedImage = [[NSImage alloc] initWithSize:rotatedBounds.size];
    16. imageBounds.origin.x = NSMidX(rotatedBounds) - (NSWidth (imageBounds) / 2);
    17. imageBounds.origin.y = NSMidY(rotatedBounds) - (NSHeight (imageBounds) / 2);
    18. transform = [NSAffineTransform transform];
    19.  
    20. [transform translateXBy:+(NSWidth(rotatedBounds)/ 2) yBy:+(NSHeight(rotatedBounds) / 2)];
    21.  
    22. [transform rotateByDegrees:degrees];
    23.  
    24. [transform translateXBy:-(NSWidth(rotatedBounds)/ 2) yBy:-(NSHeight(rotatedBounds) / 2)];
    25. [rotatedImage lockFocus];
    26. [transform concat];
    27.  
    28. [_image drawInRect:imageBounds fromRect:NSZeroRect operation:NSCompositeCopy fraction:1.0] ;
    29. [rotatedImage unlockFocus];
    30. return rotatedImage;
    31. }

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Reset Password
Fill out the form below and reset your password: