cocoaTouch/otherSrc/UIImageExtra.h
changeset 3352 ac5d14a35482
child 3361 cfc6cd502f85
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/cocoaTouch/otherSrc/UIImageExtra.h	Sat Apr 17 04:59:10 2010 +0000
@@ -0,0 +1,18 @@
+//
+//  UIImageExtra.h
+//  HedgewarsMobile
+//
+//  Created by Vittorio on 08/04/10.
+//  Copyright 2010 __MyCompanyName__. All rights reserved.
+//
+
+#import <Foundation/Foundation.h>
+
+
+@interface UIImage (extra)
+ 
+-(UIImage *)scaleToSize:(CGSize) size;
+-(UIImage *)mergeWith:(UIImage *)secondImage atPoint:(CGPoint) secondImagePoint;
+-(id) initWithContentsOfFile:(NSString *)path andCutAt:(CGRect) rect;
+
+@end