ioshc / JPCrop

高仿小红书App裁剪功能的轻量级工具。

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

JPCrop

Language

effect

Example

Tool class with high imitation of cutting function of little red book app. Juejin Blog

高仿小红书App裁剪功能的工具:
    1.集成类似小红书基本的裁剪功能;
    2.API简单易用;
    3.切换裁剪比例时可设置带有动画过渡,不会那么生硬;
    4.可异步可同步裁剪,并且可压缩。

example

How to use

Is so easy:

Initialization

// 1.Import
import JPCrop

// 2.Initialize
let frame = CGRect(...
let configure = Configure(image)
let croper = Croper(frame: frame, configure)

// 3.Add to superview, done!
view.insertSubview(croper, at: 0)

Rotate

// Default radian range is -45° ~ 45°
croper.updateRadian(radian)

// Show grid before rotating
// animated: with animation or not
croper.showRotateGrid(animated: true)

// Hide grid after rotating
// animated: with animation or not
croper.hideRotateGrid(animated: true)

Switch the crop width to height ratio

// rotateGridCount: Number of grid in rotation. (ver, hor)
// animated: with animation or not
croper.updateCropWHRatio(3.0 / 4.0, rotateGridCount: (6, 5), animated: true)

Reset

// animated: with animation or not
croper.recover(animated: true)

Crop

let configure = croper.syncConfigure()

// 1.Sync crop
let image = croper.crop() 
cropDone(image, configure)

// 2.Async crop: crop in DispatchQueue.global, result back to DispatchQueue.main 
croper.asyncCrop {
    guard let image = $0 else { return }
    cropDone(image, configure)
}

// PS: You can set the compressionScale to compress the image

More features will be added in the future...

Installation

JPCrop is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod 'JPCrop'

Author

Rogue24, zhoujianping24@hotmail.com

License

JPCrop is available under the MIT license. See the LICENSE file for more info.

About

高仿小红书App裁剪功能的轻量级工具。

License:MIT License


Languages

Language:Swift 96.0%Language:Ruby 4.0%