├── .gitignore ├── .travis.yml ├── CropPickerView.podspec ├── CropPickerView ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── BezierPath+.swift │ ├── CropDimView.swift │ ├── CropPickerView.swift │ ├── CropResult.swift │ ├── CropView.swift │ ├── LineButton.swift │ ├── NSLayoutConstraint+.swift │ ├── TransparentView.swift │ ├── UIImage+.swift │ ├── UIImageView+.swift │ └── UIView+.swift ├── Example ├── CropPickerView.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── CropPickerView-Example.xcscheme ├── CropPickerView.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── CropPickerView │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── ViewController.swift ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── CropPickerView.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── CropPickerView │ │ ├── CropPickerView-dummy.m │ │ ├── CropPickerView-prefix.pch │ │ ├── CropPickerView-umbrella.h │ │ ├── CropPickerView.modulemap │ │ ├── CropPickerView.xcconfig │ │ └── Info.plist │ │ ├── Pods-CropPickerView_Example │ │ ├── Info.plist │ │ ├── Pods-CropPickerView_Example-acknowledgements.markdown │ │ ├── Pods-CropPickerView_Example-acknowledgements.plist │ │ ├── Pods-CropPickerView_Example-dummy.m │ │ ├── Pods-CropPickerView_Example-frameworks.sh │ │ ├── Pods-CropPickerView_Example-resources.sh │ │ ├── Pods-CropPickerView_Example-umbrella.h │ │ ├── Pods-CropPickerView_Example.debug.xcconfig │ │ ├── Pods-CropPickerView_Example.modulemap │ │ └── Pods-CropPickerView_Example.release.xcconfig │ │ └── Pods-CropPickerView_Tests │ │ ├── Info.plist │ │ ├── Pods-CropPickerView_Tests-acknowledgements.markdown │ │ ├── Pods-CropPickerView_Tests-acknowledgements.plist │ │ ├── Pods-CropPickerView_Tests-dummy.m │ │ ├── Pods-CropPickerView_Tests-frameworks.sh │ │ ├── Pods-CropPickerView_Tests-resources.sh │ │ ├── Pods-CropPickerView_Tests-umbrella.h │ │ ├── Pods-CropPickerView_Tests.debug.xcconfig │ │ ├── Pods-CropPickerView_Tests.modulemap │ │ └── Pods-CropPickerView_Tests.release.xcconfig └── Tests │ ├── Info.plist │ └── Tests.swift ├── LICENSE ├── README.md ├── _Pods.xcodeproj └── img ├── 1.gif ├── 1.png ├── 2.gif ├── 2.png ├── 3.png ├── aspect.png ├── radius.png ├── result1.png └── result2.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/.travis.yml -------------------------------------------------------------------------------- /CropPickerView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/CropPickerView.podspec -------------------------------------------------------------------------------- /CropPickerView/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CropPickerView/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CropPickerView/Classes/BezierPath+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/CropPickerView/Classes/BezierPath+.swift -------------------------------------------------------------------------------- /CropPickerView/Classes/CropDimView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/CropPickerView/Classes/CropDimView.swift -------------------------------------------------------------------------------- /CropPickerView/Classes/CropPickerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/CropPickerView/Classes/CropPickerView.swift -------------------------------------------------------------------------------- /CropPickerView/Classes/CropResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/CropPickerView/Classes/CropResult.swift -------------------------------------------------------------------------------- /CropPickerView/Classes/CropView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/CropPickerView/Classes/CropView.swift -------------------------------------------------------------------------------- /CropPickerView/Classes/LineButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/CropPickerView/Classes/LineButton.swift -------------------------------------------------------------------------------- /CropPickerView/Classes/NSLayoutConstraint+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/CropPickerView/Classes/NSLayoutConstraint+.swift -------------------------------------------------------------------------------- /CropPickerView/Classes/TransparentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/CropPickerView/Classes/TransparentView.swift -------------------------------------------------------------------------------- /CropPickerView/Classes/UIImage+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/CropPickerView/Classes/UIImage+.swift -------------------------------------------------------------------------------- /CropPickerView/Classes/UIImageView+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/CropPickerView/Classes/UIImageView+.swift -------------------------------------------------------------------------------- /CropPickerView/Classes/UIView+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/CropPickerView/Classes/UIView+.swift -------------------------------------------------------------------------------- /Example/CropPickerView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/Example/CropPickerView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/CropPickerView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/Example/CropPickerView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/CropPickerView.xcodeproj/xcshareddata/xcschemes/CropPickerView-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/Example/CropPickerView.xcodeproj/xcshareddata/xcschemes/CropPickerView-Example.xcscheme -------------------------------------------------------------------------------- /Example/CropPickerView.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/Example/CropPickerView.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/CropPickerView.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/Example/CropPickerView.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/CropPickerView/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/Example/CropPickerView/1.png -------------------------------------------------------------------------------- /Example/CropPickerView/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/Example/CropPickerView/2.png -------------------------------------------------------------------------------- /Example/CropPickerView/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/Example/CropPickerView/3.png -------------------------------------------------------------------------------- /Example/CropPickerView/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/Example/CropPickerView/4.png -------------------------------------------------------------------------------- /Example/CropPickerView/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/Example/CropPickerView/5.png -------------------------------------------------------------------------------- /Example/CropPickerView/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/Example/CropPickerView/AppDelegate.swift -------------------------------------------------------------------------------- /Example/CropPickerView/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/Example/CropPickerView/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/CropPickerView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/Example/CropPickerView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/CropPickerView/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/Example/CropPickerView/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/CropPickerView/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/Example/CropPickerView/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/CropPickerView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/Example/CropPickerView/Info.plist -------------------------------------------------------------------------------- /Example/CropPickerView/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/Example/CropPickerView/ViewController.swift -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/CropPickerView.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/Example/Pods/Local Podspecs/CropPickerView.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CropPickerView/CropPickerView-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/Example/Pods/Target Support Files/CropPickerView/CropPickerView-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CropPickerView/CropPickerView-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/Example/Pods/Target Support Files/CropPickerView/CropPickerView-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CropPickerView/CropPickerView-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/Example/Pods/Target Support Files/CropPickerView/CropPickerView-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CropPickerView/CropPickerView.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/Example/Pods/Target Support Files/CropPickerView/CropPickerView.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CropPickerView/CropPickerView.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/Example/Pods/Target Support Files/CropPickerView/CropPickerView.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CropPickerView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/Example/Pods/Target Support Files/CropPickerView/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CropPickerView_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/Example/Pods/Target Support Files/Pods-CropPickerView_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CropPickerView_Example/Pods-CropPickerView_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/Example/Pods/Target Support Files/Pods-CropPickerView_Example/Pods-CropPickerView_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CropPickerView_Example/Pods-CropPickerView_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/Example/Pods/Target Support Files/Pods-CropPickerView_Example/Pods-CropPickerView_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CropPickerView_Example/Pods-CropPickerView_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/Example/Pods/Target Support Files/Pods-CropPickerView_Example/Pods-CropPickerView_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CropPickerView_Example/Pods-CropPickerView_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/Example/Pods/Target Support Files/Pods-CropPickerView_Example/Pods-CropPickerView_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CropPickerView_Example/Pods-CropPickerView_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/Example/Pods/Target Support Files/Pods-CropPickerView_Example/Pods-CropPickerView_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CropPickerView_Example/Pods-CropPickerView_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/Example/Pods/Target Support Files/Pods-CropPickerView_Example/Pods-CropPickerView_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CropPickerView_Example/Pods-CropPickerView_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/Example/Pods/Target Support Files/Pods-CropPickerView_Example/Pods-CropPickerView_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CropPickerView_Example/Pods-CropPickerView_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/Example/Pods/Target Support Files/Pods-CropPickerView_Example/Pods-CropPickerView_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CropPickerView_Example/Pods-CropPickerView_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/Example/Pods/Target Support Files/Pods-CropPickerView_Example/Pods-CropPickerView_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CropPickerView_Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/Example/Pods/Target Support Files/Pods-CropPickerView_Tests/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CropPickerView_Tests/Pods-CropPickerView_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/Example/Pods/Target Support Files/Pods-CropPickerView_Tests/Pods-CropPickerView_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CropPickerView_Tests/Pods-CropPickerView_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/Example/Pods/Target Support Files/Pods-CropPickerView_Tests/Pods-CropPickerView_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CropPickerView_Tests/Pods-CropPickerView_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/Example/Pods/Target Support Files/Pods-CropPickerView_Tests/Pods-CropPickerView_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CropPickerView_Tests/Pods-CropPickerView_Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/Example/Pods/Target Support Files/Pods-CropPickerView_Tests/Pods-CropPickerView_Tests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CropPickerView_Tests/Pods-CropPickerView_Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/Example/Pods/Target Support Files/Pods-CropPickerView_Tests/Pods-CropPickerView_Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CropPickerView_Tests/Pods-CropPickerView_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/Example/Pods/Target Support Files/Pods-CropPickerView_Tests/Pods-CropPickerView_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CropPickerView_Tests/Pods-CropPickerView_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/Example/Pods/Target Support Files/Pods-CropPickerView_Tests/Pods-CropPickerView_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CropPickerView_Tests/Pods-CropPickerView_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/Example/Pods/Target Support Files/Pods-CropPickerView_Tests/Pods-CropPickerView_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CropPickerView_Tests/Pods-CropPickerView_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/Example/Pods/Target Support Files/Pods-CropPickerView_Tests/Pods-CropPickerView_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/Example/Tests/Tests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/README.md -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /img/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/img/1.gif -------------------------------------------------------------------------------- /img/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/img/1.png -------------------------------------------------------------------------------- /img/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/img/2.gif -------------------------------------------------------------------------------- /img/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/img/2.png -------------------------------------------------------------------------------- /img/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/img/3.png -------------------------------------------------------------------------------- /img/aspect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/img/aspect.png -------------------------------------------------------------------------------- /img/radius.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/img/radius.png -------------------------------------------------------------------------------- /img/result1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/img/result1.png -------------------------------------------------------------------------------- /img/result2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikachu987/CropPickerView/HEAD/img/result2.png --------------------------------------------------------------------------------