RFSOutputImageParams
Objective-C
@interface RFSOutputImageParams : NSObject
Swift
class OutputImageParams : NSObject
Set of parameter for image processing.
-
If set, the background color is replaced. The silhouette of a person is cut out and the background is filled with this color.
Declaration
Objective-C
@property (nonatomic, strong, nullable) UIColor *backgroundColor;
Swift
var backgroundColor: UIColor? { get set }
-
If set, the Base64 of an aligned and cropped portrait is returned in the crop field. Alignment is performed according to type. If a head on the original image is tilted, for the returned portrait it is aligned in a straight vertical line.
If there are more than one face in the photo, all the faces will be detected and processed, and separate portraits for each face will be returned. So, if there were five people in the photo, you’ll get five processed portraits.
Declaration
Objective-C
@property (nonatomic, strong, nullable) RFSOutputImageCrop *crop;
Swift
var crop: RFSOutputImageCrop? { get set }