gitextract_x4b46xu8/ ├── .gitignore ├── AKImageCropperView/ │ ├── AKImageCropperOverlayView.swift │ ├── AKImageCropperOverlayViewConfiguration.swift │ ├── AKImageCropperOverlayViewConfigurationCorner.swift │ ├── AKImageCropperOverlayViewConfigurationEdge.swift │ ├── AKImageCropperOverlayViewConfigurationGrid.swift │ ├── AKImageCropperOverlayViewConfigurationOverlay.swift │ ├── AKImageCropperOverlayViewTouchState.swift │ ├── AKImageCropperScrollView.swift │ ├── AKImageCropperView.h │ ├── AKImageCropperView.swift │ ├── IC_CGFloatExtension.swift │ ├── IC_CGPointExtension.swift │ ├── IC_CGSizeExtensions.swift │ ├── IC_UIImageExtensions.swift │ ├── Info.plist │ └── PrimaryFilledButton.swift ├── AKImageCropperView.podspec ├── AKImageCropperView.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ ├── AKImageCropperDemo.xcscmblueprint │ │ └── Demo.xcscmblueprint │ └── xcshareddata/ │ └── xcschemes/ │ └── AKImageCropperView.xcscheme ├── AKImageCropperViewExample/ │ ├── AppDelegate.swift │ ├── Base.lproj/ │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Constants.swift │ ├── CropperViewController.swift │ ├── CustomImageCropperOverlayView.swift │ ├── HomeViewController.swift │ ├── ImageViewController.swift │ ├── Images.xcassets/ │ │ ├── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Attractive-girl.imageset/ │ │ │ └── Contents.json │ │ ├── Autumn-background.imageset/ │ │ │ └── Contents.json │ │ ├── Colorful-pillows.imageset/ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Cupcakes.imageset/ │ │ │ └── Contents.json │ │ ├── Funnel-cake-stand.imageset/ │ │ │ └── Contents.json │ │ ├── Icons/ │ │ │ ├── Contents.json │ │ │ ├── overlay.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── random.imageset/ │ │ │ │ └── Contents.json │ │ │ └── rotate.imageset/ │ │ │ └── Contents.json │ │ └── Image-of-earth.imageset/ │ │ └── Contents.json │ ├── ImagesTableViewController.swift │ └── Info.plist ├── LICENSE └── README.md