Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 428 Bytes

README.md

File metadata and controls

25 lines (19 loc) · 428 Bytes

PuzzleCropper

Puzzle cropper framework for iOS

Usage

let cropper = PuzzleCropper()
cropper.numberOfLines = 5
cropper.puzzleLineWidth = 1
cropper.cropImage(image, thread: DispatchQueue.global()) { (puzzles) in
    // Here your puzzles
}

Installation

Using cocoapod

target 'MyApp' do
  pod 'PuzzleCropper'
end