cocoaTouch/otherSrc/UIImageExtra.m
author koda
Sat, 17 Apr 2010 04:59:10 +0000
changeset 3352 ac5d14a35482
child 3361 cfc6cd502f85
permissions -rw-r--r--
complete previews on the team settings moved image functions in a category of UIImage other code cleanup
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3352
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
     1
//
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
     2
//  UIImageExtra.m
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
     3
//  HedgewarsMobile
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
     4
//
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
     5
//  Created by Vittorio on 08/04/10.
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
     6
//  Copyright 2010 __MyCompanyName__. All rights reserved.
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
     7
//
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
     8
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
     9
#import "UIImageExtra.h"
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    10
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    11
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    12
@implementation UIImage (extra)
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    13
 
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    14
-(UIImage *)scaleToSize:(CGSize) size {
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    15
  // Create a bitmap graphics context
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    16
  // This will also set it as the current context
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    17
  UIGraphicsBeginImageContext(size);
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    18
 
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    19
  // Draw the scaled image in the current context
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    20
  [self drawInRect:CGRectMake(0, 0, size.width, size.height)];
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    21
 
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    22
  // Create a new image from current context
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    23
  UIImage* scaledImage = UIGraphicsGetImageFromCurrentImageContext();
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    24
 
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    25
  // Pop the current context from the stack
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    26
  UIGraphicsEndImageContext();
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    27
 
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    28
  // Return our new scaled image (autoreleased)
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    29
  return scaledImage;
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    30
}
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    31
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    32
-(UIImage *)mergeWith:(UIImage *)secondImage atPoint:(CGPoint) secondImagePoint {
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    33
    // create a contex of size of the background image
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    34
    UIGraphicsBeginImageContext(self.size);
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    35
    
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    36
    // drav the background image
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    37
    [self drawAtPoint:CGPointMake(0,0)];
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    38
    
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    39
    // draw the image on top of the first image
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    40
    [secondImage drawAtPoint:secondImagePoint];
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    41
    
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    42
    // create an image from the current contex (not thread safe)
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    43
    UIImage *resultImage = UIGraphicsGetImageFromCurrentImageContext();
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    44
    
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    45
    // free drawing contex
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    46
    UIGraphicsEndImageContext();
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    47
    
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    48
    // return the resulting autoreleased image
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    49
    return resultImage;
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    50
}
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    51
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    52
-(id) initWithContentsOfFile:(NSString *)path andCutAt:(CGRect) rect {
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    53
    // load image from path
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    54
    UIImage *image = [[UIImage alloc] initWithContentsOfFile: path];
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    55
    
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    56
    if (nil != image) {
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    57
        // get its CGImage representation with a give size
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    58
        CGImageRef cgImgage = CGImageCreateWithImageInRect([image CGImage], rect);
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    59
    
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    60
        // clean memory
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    61
        [image release];
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    62
    
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    63
        // create a UIImage from the CGImage (memory must be allocated already)
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    64
        UIImage *sprite = [self initWithCGImage:cgImgage];
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    65
    
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    66
        // clean memory
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    67
        CGImageRelease(cgImgage);
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    68
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    69
        // return resulting image
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    70
        return sprite;
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    71
    } else {
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    72
        NSLog(@"initWithContentsOfFile: andCutAt: FAILED");
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    73
        return nil;
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    74
    }
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    75
}
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    76
 
ac5d14a35482 complete previews on the team settings
koda
parents:
diff changeset
    77
@end