gitextract_9nhdc9e5/ ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── RSColorPicker/ │ ├── ColorPickerClasses/ │ │ ├── ANImageBitmapRep/ │ │ │ ├── ANImageBitmapRep.h │ │ │ ├── ANImageBitmapRep.m │ │ │ ├── BitmapContextRep.h │ │ │ ├── BitmapContextRep.m │ │ │ ├── Compatibility/ │ │ │ │ ├── NSImage+ANImageBitmapRep.h │ │ │ │ ├── NSImage+ANImageBitmapRep.m │ │ │ │ ├── OSCommonImage.h │ │ │ │ ├── OSCommonImage.m │ │ │ │ ├── UIImage+ANImageBitmapRep.h │ │ │ │ └── UIImage+ANImageBitmapRep.m │ │ │ ├── CoreGraphics/ │ │ │ │ ├── CGContextCreator.h │ │ │ │ ├── CGContextCreator.m │ │ │ │ ├── CGImageContainer.h │ │ │ │ └── CGImageContainer.m │ │ │ └── Manipulators/ │ │ │ ├── BitmapContextManipulator.h │ │ │ ├── BitmapContextManipulator.m │ │ │ ├── BitmapCropManipulator.h │ │ │ ├── BitmapCropManipulator.m │ │ │ ├── BitmapDrawManipulator.h │ │ │ ├── BitmapDrawManipulator.m │ │ │ ├── BitmapRotationManipulator.h │ │ │ ├── BitmapRotationManipulator.m │ │ │ ├── BitmapScaleManipulator.h │ │ │ └── BitmapScaleManipulator.m │ │ ├── BGRSLoupeLayer.h │ │ ├── BGRSLoupeLayer.m │ │ ├── RSColorFunctions.h │ │ ├── RSColorFunctions.m │ │ ├── RSColorPickerState.h │ │ ├── RSColorPickerState.m │ │ ├── RSColorPickerView.h │ │ ├── RSColorPickerView.m │ │ ├── RSGenerateOperation.h │ │ ├── RSGenerateOperation.m │ │ ├── RSSelectionLayer.h │ │ └── RSSelectionLayer.m │ ├── RSBrightnessSlider.h │ ├── RSBrightnessSlider.m │ ├── RSColorPicker-Info.plist │ ├── RSColorPicker-Prefix.pch │ ├── RSColorPickerAppDelegate.h │ ├── RSColorPickerAppDelegate.m │ ├── RSOpacitySlider.h │ ├── RSOpacitySlider.m │ ├── TestColorViewController.h │ ├── TestColorViewController.m │ ├── en.lproj/ │ │ └── InfoPlist.strings │ └── main.m ├── RSColorPicker.podspec ├── RSColorPicker.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ └── contents.xcworkspacedata │ └── xcshareddata/ │ └── xcschemes/ │ └── RSColorPicker.xcscheme └── RSColorPickerTests/ ├── CPTestCase.h ├── CPTestCase.m ├── CPTestCaseTests.m ├── RSColorFunctionsTests.m ├── RSColorPickerStateTests.m ├── RSColorPickerTests-Info.plist ├── RSColorPickerTests-Prefix.pch ├── RSColorPickerViewDelegateTests.m ├── RSColorPickerViewTests.m └── en.lproj/ └── InfoPlist.strings