7 @property (nonatomic, readwrite, assign, nullable) CGImageRef 
image;
 
    8 @property (nonatomic, readwrite, assign) CGFloat 
scale;
 
    9 @property (nonatomic, readwrite, assign, getter = isTiled) BOOL 
tiled;
 
   12 @property (nonatomic, readonly, getter = isOpaque) BOOL 
opaque;
 
   16 +(nonnull instancetype)imageNamed:(nonnull 
NSString *)name;
 
   18 +(nonnull instancetype)imageWithNativeImage:(nullable 
CPTNativeImage *)anImage;
 
   19 +(nonnull instancetype)imageWithContentsOfFile:(nonnull 
NSString *)path;
 
   20 +(nonnull instancetype)imageWithCGImage:(nullable 
CGImageRef)anImage scale:(
CGFloat)newScale;
 
   21 +(nonnull instancetype)imageWithCGImage:(nullable 
CGImageRef)anImage;
 
   22 +(nonnull instancetype)imageForPNGFile:(nonnull 
NSString *)path;
 
   27 -(nonnull instancetype)initWithContentsOfFile:(nonnull 
NSString *)path;
 
   28 -(nonnull instancetype)initWithCGImage:(nullable 
CGImageRef)anImage scale:(
CGFloat)newScale NS_DESIGNATED_INITIALIZER;
 
   29 -(nonnull instancetype)initWithCGImage:(nullable 
CGImageRef)anImage;
 
   30 -(nullable instancetype)initWithCoder:(nonnull 
NSCoder *)decoder NS_DESIGNATED_INITIALIZER;
 
   49 -(nonnull instancetype)initWithNativeImage:(nullable 
CPTNativeImage *)anImage;
 
   50 -(nonnull instancetype)initForPNGFile:(nonnull 
NSString *)path;