├── .gitignore ├── Assets ├── appetize.png └── screenshot.PNG ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Example ├── Example.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── hamed.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ ├── MRamadan.xcuserdatad │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ │ ├── hamed.xcuserdatad │ │ └── xcschemes │ │ │ ├── editorTest.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── mohamedm.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── Example.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Example │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── 0.imageset │ │ │ ├── 0.png │ │ │ └── Contents.json │ │ ├── 1.imageset │ │ │ ├── 1.png │ │ │ └── Contents.json │ │ ├── 10.imageset │ │ │ ├── 10.png │ │ │ └── Contents.json │ │ ├── 2.imageset │ │ │ ├── 2.png │ │ │ └── Contents.json │ │ ├── 3.imageset │ │ │ ├── 3.png │ │ │ └── Contents.json │ │ ├── 4.imageset │ │ │ ├── 4.png │ │ │ └── Contents.json │ │ ├── 5.imageset │ │ │ ├── 5.png │ │ │ └── Contents.json │ │ ├── 6.imageset │ │ │ ├── 6.png │ │ │ └── Contents.json │ │ ├── 7.imageset │ │ │ ├── 7.png │ │ │ └── Contents.json │ │ ├── 8.imageset │ │ │ ├── 8.png │ │ │ └── Contents.json │ │ ├── 9.imageset │ │ │ ├── 9.png │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.swift │ └── img.jpg ├── Podfile ├── Podfile.lock └── Pods │ ├── Local Podspecs │ └── iOSPhotoEditor.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ ├── MRamadan.xcuserdatad │ │ └── xcschemes │ │ │ ├── Pods-editorTest.xcscheme │ │ │ ├── iOSPhotoEditor.xcscheme │ │ │ └── xcschememanagement.plist │ │ ├── hamed.xcuserdatad │ │ └── xcschemes │ │ │ ├── Pods-editorTest.xcscheme │ │ │ ├── iOSPhotoEditor.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── mohamedm.xcuserdatad │ │ └── xcschemes │ │ ├── iOSPhotoEditor.xcscheme │ │ └── xcschememanagement.plist │ └── Target Support Files │ ├── Pods-Example │ ├── Pods-Example-Info.plist │ ├── Pods-Example-acknowledgements.markdown │ ├── Pods-Example-acknowledgements.plist │ ├── Pods-Example-dummy.m │ ├── Pods-Example-frameworks.sh │ ├── Pods-Example-umbrella.h │ ├── Pods-Example.debug.xcconfig │ ├── Pods-Example.modulemap │ └── Pods-Example.release.xcconfig │ └── iOSPhotoEditor │ ├── iOSPhotoEditor-Info.plist │ ├── iOSPhotoEditor-dummy.m │ ├── iOSPhotoEditor-prefix.pch │ ├── iOSPhotoEditor-umbrella.h │ ├── iOSPhotoEditor.modulemap │ └── iOSPhotoEditor.xcconfig ├── LICENSE.md ├── README.md ├── _config.yml ├── iOSPhotoEditor.podspec └── iOSPhotoEditor ├── ColorCollectionViewCell.swift ├── ColorCollectionViewCell.xib ├── ColorsCollectionViewDelegate.swift ├── CropRectView.swift ├── CropView.swift ├── CropViewController.swift ├── EmojiCollectionViewCell.swift ├── EmojiCollectionViewCell.xib ├── EmojisCollectionViewDelegate.swift ├── GradientView.swift ├── LaunchScreen.storyboard ├── PhotoCropEditorBorder.png ├── PhotoCropEditorBorder@2x.png ├── PhotoCropEditorBorder@3x.png ├── PhotoEditor+Controls.swift ├── PhotoEditor+Crop.swift ├── PhotoEditor+Drawing.swift ├── PhotoEditor+Font.swift ├── PhotoEditor+Gestures.swift ├── PhotoEditor+Keyboard.swift ├── PhotoEditor+StickersViewController.swift ├── PhotoEditor+UITextView.swift ├── PhotoEditorViewController.swift ├── PhotoEditorViewController.xib ├── Protocols.swift ├── ResizeControl.swift ├── StickerCollectionViewCell.swift ├── StickerCollectionViewCell.xib ├── StickersViewController.swift ├── StickersViewController.xib ├── UIImage+Crop.swift ├── UIImage+Size.swift ├── UIImageView+Alpha.swift ├── UIView+Image.swift └── icomoon.ttf /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | /*.xcodeproj 5 | xcuserdata/ 6 | -------------------------------------------------------------------------------- /Assets/appetize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Assets/appetize.png -------------------------------------------------------------------------------- /Assets/screenshot.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Assets/screenshot.PNG -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.xcworkspace/xcuserdata/hamed.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Example.xcodeproj/project.xcworkspace/xcuserdata/hamed.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Example/Example.xcodeproj/xcuserdata/MRamadan.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Example.xcodeproj/xcuserdata/MRamadan.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Example/Example.xcodeproj/xcuserdata/hamed.xcuserdatad/xcschemes/editorTest.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Example.xcodeproj/xcuserdata/hamed.xcuserdatad/xcschemes/editorTest.xcscheme -------------------------------------------------------------------------------- /Example/Example.xcodeproj/xcuserdata/hamed.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Example.xcodeproj/xcuserdata/hamed.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Example/Example.xcodeproj/xcuserdata/mohamedm.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Example.xcodeproj/xcuserdata/mohamedm.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Example/Example.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Example.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Example.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Example.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/Example/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Example/AppDelegate.swift -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/0.imageset/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Example/Assets.xcassets/0.imageset/0.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/0.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Example/Assets.xcassets/0.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/1.imageset/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Example/Assets.xcassets/1.imageset/1.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Example/Assets.xcassets/1.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/10.imageset/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Example/Assets.xcassets/10.imageset/10.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/10.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Example/Assets.xcassets/10.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/2.imageset/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Example/Assets.xcassets/2.imageset/2.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Example/Assets.xcassets/2.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/3.imageset/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Example/Assets.xcassets/3.imageset/3.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Example/Assets.xcassets/3.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/4.imageset/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Example/Assets.xcassets/4.imageset/4.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Example/Assets.xcassets/4.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/5.imageset/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Example/Assets.xcassets/5.imageset/5.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Example/Assets.xcassets/5.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/6.imageset/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Example/Assets.xcassets/6.imageset/6.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/6.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Example/Assets.xcassets/6.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/7.imageset/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Example/Assets.xcassets/7.imageset/7.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/7.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Example/Assets.xcassets/7.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/8.imageset/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Example/Assets.xcassets/8.imageset/8.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/8.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Example/Assets.xcassets/8.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/9.imageset/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Example/Assets.xcassets/9.imageset/9.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/9.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Example/Assets.xcassets/9.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Example/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/Example/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Example/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/Example/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Example/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Example/Info.plist -------------------------------------------------------------------------------- /Example/Example/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Example/ViewController.swift -------------------------------------------------------------------------------- /Example/Example/img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Example/img.jpg -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/iOSPhotoEditor.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Pods/Local Podspecs/iOSPhotoEditor.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/MRamadan.xcuserdatad/xcschemes/Pods-editorTest.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/MRamadan.xcuserdatad/xcschemes/Pods-editorTest.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/MRamadan.xcuserdatad/xcschemes/iOSPhotoEditor.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/MRamadan.xcuserdatad/xcschemes/iOSPhotoEditor.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/MRamadan.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/MRamadan.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/hamed.xcuserdatad/xcschemes/Pods-editorTest.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/hamed.xcuserdatad/xcschemes/Pods-editorTest.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/hamed.xcuserdatad/xcschemes/iOSPhotoEditor.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/hamed.xcuserdatad/xcschemes/iOSPhotoEditor.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/hamed.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/hamed.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/mohamedm.xcuserdatad/xcschemes/iOSPhotoEditor.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/mohamedm.xcuserdatad/xcschemes/iOSPhotoEditor.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/mohamedm.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/mohamedm.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Example/Pods-Example-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Pods/Target Support Files/Pods-Example/Pods-Example-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Example/Pods-Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Pods/Target Support Files/Pods-Example/Pods-Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Example/Pods-Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Pods/Target Support Files/Pods-Example/Pods-Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Example/Pods-Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Pods/Target Support Files/Pods-Example/Pods-Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Example/Pods-Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Pods/Target Support Files/Pods-Example/Pods-Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Example/Pods-Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Pods/Target Support Files/Pods-Example/Pods-Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Example/Pods-Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Pods/Target Support Files/Pods-Example/Pods-Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Example/Pods-Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Pods/Target Support Files/Pods-Example/Pods-Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Example/Pods-Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Pods/Target Support Files/Pods-Example/Pods-Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/iOSPhotoEditor/iOSPhotoEditor-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Pods/Target Support Files/iOSPhotoEditor/iOSPhotoEditor-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/iOSPhotoEditor/iOSPhotoEditor-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Pods/Target Support Files/iOSPhotoEditor/iOSPhotoEditor-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/iOSPhotoEditor/iOSPhotoEditor-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Pods/Target Support Files/iOSPhotoEditor/iOSPhotoEditor-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/iOSPhotoEditor/iOSPhotoEditor-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Pods/Target Support Files/iOSPhotoEditor/iOSPhotoEditor-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/iOSPhotoEditor/iOSPhotoEditor.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Pods/Target Support Files/iOSPhotoEditor/iOSPhotoEditor.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/iOSPhotoEditor/iOSPhotoEditor.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/Example/Pods/Target Support Files/iOSPhotoEditor/iOSPhotoEditor.xcconfig -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/_config.yml -------------------------------------------------------------------------------- /iOSPhotoEditor.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/iOSPhotoEditor.podspec -------------------------------------------------------------------------------- /iOSPhotoEditor/ColorCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/iOSPhotoEditor/ColorCollectionViewCell.swift -------------------------------------------------------------------------------- /iOSPhotoEditor/ColorCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/iOSPhotoEditor/ColorCollectionViewCell.xib -------------------------------------------------------------------------------- /iOSPhotoEditor/ColorsCollectionViewDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/iOSPhotoEditor/ColorsCollectionViewDelegate.swift -------------------------------------------------------------------------------- /iOSPhotoEditor/CropRectView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/iOSPhotoEditor/CropRectView.swift -------------------------------------------------------------------------------- /iOSPhotoEditor/CropView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/iOSPhotoEditor/CropView.swift -------------------------------------------------------------------------------- /iOSPhotoEditor/CropViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/iOSPhotoEditor/CropViewController.swift -------------------------------------------------------------------------------- /iOSPhotoEditor/EmojiCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/iOSPhotoEditor/EmojiCollectionViewCell.swift -------------------------------------------------------------------------------- /iOSPhotoEditor/EmojiCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/iOSPhotoEditor/EmojiCollectionViewCell.xib -------------------------------------------------------------------------------- /iOSPhotoEditor/EmojisCollectionViewDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/iOSPhotoEditor/EmojisCollectionViewDelegate.swift -------------------------------------------------------------------------------- /iOSPhotoEditor/GradientView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/iOSPhotoEditor/GradientView.swift -------------------------------------------------------------------------------- /iOSPhotoEditor/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/iOSPhotoEditor/LaunchScreen.storyboard -------------------------------------------------------------------------------- /iOSPhotoEditor/PhotoCropEditorBorder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/iOSPhotoEditor/PhotoCropEditorBorder.png -------------------------------------------------------------------------------- /iOSPhotoEditor/PhotoCropEditorBorder@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/iOSPhotoEditor/PhotoCropEditorBorder@2x.png -------------------------------------------------------------------------------- /iOSPhotoEditor/PhotoCropEditorBorder@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/iOSPhotoEditor/PhotoCropEditorBorder@3x.png -------------------------------------------------------------------------------- /iOSPhotoEditor/PhotoEditor+Controls.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/iOSPhotoEditor/PhotoEditor+Controls.swift -------------------------------------------------------------------------------- /iOSPhotoEditor/PhotoEditor+Crop.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/iOSPhotoEditor/PhotoEditor+Crop.swift -------------------------------------------------------------------------------- /iOSPhotoEditor/PhotoEditor+Drawing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/iOSPhotoEditor/PhotoEditor+Drawing.swift -------------------------------------------------------------------------------- /iOSPhotoEditor/PhotoEditor+Font.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/iOSPhotoEditor/PhotoEditor+Font.swift -------------------------------------------------------------------------------- /iOSPhotoEditor/PhotoEditor+Gestures.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/iOSPhotoEditor/PhotoEditor+Gestures.swift -------------------------------------------------------------------------------- /iOSPhotoEditor/PhotoEditor+Keyboard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/iOSPhotoEditor/PhotoEditor+Keyboard.swift -------------------------------------------------------------------------------- /iOSPhotoEditor/PhotoEditor+StickersViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/iOSPhotoEditor/PhotoEditor+StickersViewController.swift -------------------------------------------------------------------------------- /iOSPhotoEditor/PhotoEditor+UITextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/iOSPhotoEditor/PhotoEditor+UITextView.swift -------------------------------------------------------------------------------- /iOSPhotoEditor/PhotoEditorViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/iOSPhotoEditor/PhotoEditorViewController.swift -------------------------------------------------------------------------------- /iOSPhotoEditor/PhotoEditorViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/iOSPhotoEditor/PhotoEditorViewController.xib -------------------------------------------------------------------------------- /iOSPhotoEditor/Protocols.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/iOSPhotoEditor/Protocols.swift -------------------------------------------------------------------------------- /iOSPhotoEditor/ResizeControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/iOSPhotoEditor/ResizeControl.swift -------------------------------------------------------------------------------- /iOSPhotoEditor/StickerCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/iOSPhotoEditor/StickerCollectionViewCell.swift -------------------------------------------------------------------------------- /iOSPhotoEditor/StickerCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/iOSPhotoEditor/StickerCollectionViewCell.xib -------------------------------------------------------------------------------- /iOSPhotoEditor/StickersViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/iOSPhotoEditor/StickersViewController.swift -------------------------------------------------------------------------------- /iOSPhotoEditor/StickersViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/iOSPhotoEditor/StickersViewController.xib -------------------------------------------------------------------------------- /iOSPhotoEditor/UIImage+Crop.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/iOSPhotoEditor/UIImage+Crop.swift -------------------------------------------------------------------------------- /iOSPhotoEditor/UIImage+Size.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/iOSPhotoEditor/UIImage+Size.swift -------------------------------------------------------------------------------- /iOSPhotoEditor/UIImageView+Alpha.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/iOSPhotoEditor/UIImageView+Alpha.swift -------------------------------------------------------------------------------- /iOSPhotoEditor/UIView+Image.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/iOSPhotoEditor/UIView+Image.swift -------------------------------------------------------------------------------- /iOSPhotoEditor/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhm-ibrahim/photo-editor/HEAD/iOSPhotoEditor/icomoon.ttf --------------------------------------------------------------------------------