2 * Generated by class-dump 3.1.2.
4 * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2007 by Steve Nygard.
7 #import <Foundation/NSObject.h>
10 UIImageOrientationUp
, // default orientation
11 UIImageOrientationDown
, // 180 deg rotation
12 UIImageOrientationLeft
, // 90 deg CCW
13 UIImageOrientationRight
, // 90 deg CW
14 UIImageOrientationUpMirrored
, // as above but image mirrored along other axis. horizontal flip
15 UIImageOrientationDownMirrored
, // horizontal flip
16 UIImageOrientationLeftMirrored
, // vertical flip
17 UIImageOrientationRightMirrored
, // vertical flip
20 @interface UIImage
: NSObject
25 unsigned int imageOrientation
:3;
26 unsigned int cached
:1;
27 unsigned int stretchable
:1;
32 + (id
)imageNamed
:(id
)fp8
;
33 + (id
)imageWithContentsOfFile
:(id
)fp8
;
34 + (id
)imageWithData
:(id
)fp8
;
35 + (id
)imageWithCGImage
:(struct CGImage
*)fp8
;
37 + (id
)imageWithCGImage
:(struct CGImage
*)fp8 scale
:(CGFloat
)scale orientation
:(UIImageOrientation
)orientation
;
39 - (id
)initWithContentsOfFile
:(id
)fp8
;
40 - (id
)initWithData
:(id
)fp8
;
41 - (id
)initWithCGImage
:(struct CGImage
*)fp8
;
43 - (struct CGImage
*)CGImage
;
44 - (struct CGSize
)size
;
45 - (int)imageOrientation
;
46 - (void)drawAtPoint
:(struct CGPoint
)fp8
;
47 - (void)drawAtPoint
:(struct CGPoint
)fp8 blendMode
:(int)fp16 alpha
:(float)fp20
;
48 - (void)drawInRect
:(struct CGRect
)fp8
;
49 - (void)drawInRect
:(struct CGRect
)fp8 blendMode
:(int)fp24 alpha
:(float)fp28
;
50 - (void)drawAsPatternInRect
:(struct CGRect
)fp8
;
53 - (id
)stretchableImageWithLeftCapWidth
:(int)fp8 topCapHeight
:(int)fp12
;
57 - (void) setScale
:(CGFloat
)scale
;