ImageCropper icon indicating copy to clipboard operation
ImageCropper copied to clipboard

Free Form

Open phr85 opened this issue 5 years ago • 1 comments

Is there any plans to support free form cutting?

phr85 avatar Jun 17 '19 13:06 phr85

Is there any plans to support free form cutting?

You can set custom sides ratio:

let image = ...
let cornerRadius = ...
let width = ...
let height = ...
let config = ImageCropperConfiguration(with: image, and: ImageCropperFigureType.customRect, 
                    cornerRadius: cornerRadius)
config. customRatio = CGSize(width: width, height: height)

nkopilovskii avatar Jul 06 '19 09:07 nkopilovskii