#import #import #import @class PGCameraShotMetadata; @class PGRectangle; @interface TGCameraCapturedPhoto : NSObject @property (nonatomic, readonly) UIImage *existingImage; @property (nonatomic, readonly) NSURL *url; @property (nonatomic, readonly) PGCameraShotMetadata *metadata; @property (nonatomic, readonly) PGRectangle *rectangle; - (instancetype)initWithImage:(UIImage *)image metadata:(PGCameraShotMetadata *)metadata; - (instancetype)initWithExistingImage:(UIImage *)image; - (instancetype)initWithExistingImage:(UIImage *)image identifier:(NSString *)identifier; - (instancetype)initWithImage:(UIImage *)image rectangle:(PGRectangle *)rectangle; - (void)_cleanUp; @end