├── .github └── workflows │ └── xcodebuild.yml ├── .gitignore ├── .swiftpm └── xcode │ └── xcshareddata │ └── xcschemes │ ├── UIImageColors-Package.xcscheme │ ├── UIImageColors.xcscheme │ ├── UIImageColorsObjc.xcscheme │ └── UIImageColorsTests.xcscheme ├── Example ├── Example.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ ├── iOS-Objective-C.xcscheme │ │ ├── iOS.xcscheme │ │ ├── macOS-Objective-C.xcscheme │ │ └── macOS.xcscheme ├── Shared │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Blue Nude II - Henri Matisse.imageset │ │ │ ├── Blue Nude II - Henri Matisse.jpg │ │ │ └── Contents.json │ │ ├── Cafe Terrace at Night - Vincent Van Gogh.imageset │ │ │ ├── Cafe Terrace at Night - Vincent Van Gogh.jpg │ │ │ └── Contents.json │ │ ├── Calvin Klein - Kaws.imageset │ │ │ ├── Calvin Klein - Kaws.jpg │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Le Reve - Pablo Picasso.imageset │ │ │ ├── Contents.json │ │ │ └── Le Reve - Pablo Picasso.jpg │ │ ├── Les Demoiselles d'Avignon - Picasso.imageset │ │ │ ├── Contents.json │ │ │ └── Les Demoiselles d'Avignon - Picasso.jpg │ │ ├── Mona Lisa - Leonardo da Vinci.imageset │ │ │ ├── Contents.json │ │ │ └── Mona Lisa - Leonardo da Vinci.jpg │ │ ├── Nighthawks - Edward Hopper.imageset │ │ │ ├── Contents.json │ │ │ └── Nighthawks - Edward Hopper.jpg │ │ ├── No. 210:No. 211 - Mark Rothko.imageset │ │ │ ├── Contents.json │ │ │ └── No. 210:No. 211 - Mark Rothko.jpg │ │ ├── Number 1A - Jackson Pollock.imageset │ │ │ ├── Contents.json │ │ │ └── Number 1A - Jackson Pollock.jpg │ │ ├── Self-portrait Spring 1887 - Vincent Van Gogh.imageset │ │ │ ├── Contents.json │ │ │ └── Self-portrait Spring 1887 - Vincent Van Gogh.jpg │ │ ├── Skull - Jean-Michel Basquiat.imageset │ │ │ ├── Contents.json │ │ │ └── Skull - Jean-Michel Basquiat.jpg │ │ └── Woman I - Willem de Kooning.imageset │ │ │ ├── Contents.json │ │ │ └── Woman I - Willem de Kooning.jpg │ └── Painting.swift ├── iOS-Objective-C │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ ├── Info.plist │ ├── PaintingViewController.h │ ├── PaintingViewController.m │ ├── SceneDelegate.h │ ├── SceneDelegate.m │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── iOS │ ├── AppDelegate.swift │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ ├── Helpers.swift │ ├── Info.plist │ ├── PaintingViewController.swift │ ├── SceneDelegate.swift │ └── ViewController.swift ├── macOS-Objective-C │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── MainMenu.h │ ├── MainMenu.m │ ├── NSLabel.h │ ├── NSLabel.m │ ├── PaintingItem.h │ ├── PaintingItem.m │ ├── ViewController.h │ ├── ViewController.m │ ├── macOS_Objective_C.entitlements │ └── main.m └── macOS │ ├── AppDelegate.swift │ ├── MainMenu.swift │ ├── NSLabel.swift │ ├── PaintingItem.swift │ ├── ViewController.swift │ ├── macOS.entitlements │ └── main.swift ├── LICENSE ├── Package.swift ├── README.md ├── Sources ├── UIImageColors │ ├── Deprecated.swift │ ├── Internal │ │ ├── _ColorAnalyzer.swift │ │ ├── _ColorCounter.swift │ │ ├── _HSV.swift │ │ ├── _PixelFormat.swift │ │ └── _RGB.swift │ ├── NSImage+Colors.swift │ ├── Resources │ │ └── PrivacyInfo.xcprivacy │ ├── ScaleQuality.swift │ └── UIImage+Colors.swift └── UIImageColorsObjc │ ├── NSImageColorsObjc.swift │ ├── Resources │ └── PrivacyInfo.xcprivacy │ ├── UIImageColorsObjc.swift │ └── UIImageColorsScaleQuality.swift ├── Tests └── UIImageColorsTests │ ├── Helpers.swift │ ├── UIImageColorsObjcTests.swift │ └── UIImageColorsTests.swift ├── UIImageColors.podspec ├── UIImageColorsObjc.podspec ├── preview-iphone.png └── preview-macos.png /.github/workflows/xcodebuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/.github/workflows/xcodebuild.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcschemes/UIImageColors-Package.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/.swiftpm/xcode/xcshareddata/xcschemes/UIImageColors-Package.xcscheme -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcschemes/UIImageColors.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/.swiftpm/xcode/xcshareddata/xcschemes/UIImageColors.xcscheme -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcschemes/UIImageColorsObjc.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/.swiftpm/xcode/xcshareddata/xcschemes/UIImageColorsObjc.xcscheme -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcschemes/UIImageColorsTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/.swiftpm/xcode/xcshareddata/xcschemes/UIImageColorsTests.xcscheme -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/Example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/Example.xcodeproj/xcshareddata/xcschemes/iOS-Objective-C.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/Example.xcodeproj/xcshareddata/xcschemes/iOS-Objective-C.xcscheme -------------------------------------------------------------------------------- /Example/Example.xcodeproj/xcshareddata/xcschemes/iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/Example.xcodeproj/xcshareddata/xcschemes/iOS.xcscheme -------------------------------------------------------------------------------- /Example/Example.xcodeproj/xcshareddata/xcschemes/macOS-Objective-C.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/Example.xcodeproj/xcshareddata/xcschemes/macOS-Objective-C.xcscheme -------------------------------------------------------------------------------- /Example/Example.xcodeproj/xcshareddata/xcschemes/macOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/Example.xcodeproj/xcshareddata/xcschemes/macOS.xcscheme -------------------------------------------------------------------------------- /Example/Shared/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/Shared/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Example/Shared/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/Shared/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/Shared/Assets.xcassets/Blue Nude II - Henri Matisse.imageset/Blue Nude II - Henri Matisse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/Shared/Assets.xcassets/Blue Nude II - Henri Matisse.imageset/Blue Nude II - Henri Matisse.jpg -------------------------------------------------------------------------------- /Example/Shared/Assets.xcassets/Blue Nude II - Henri Matisse.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/Shared/Assets.xcassets/Blue Nude II - Henri Matisse.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Shared/Assets.xcassets/Cafe Terrace at Night - Vincent Van Gogh.imageset/Cafe Terrace at Night - Vincent Van Gogh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/Shared/Assets.xcassets/Cafe Terrace at Night - Vincent Van Gogh.imageset/Cafe Terrace at Night - Vincent Van Gogh.jpg -------------------------------------------------------------------------------- /Example/Shared/Assets.xcassets/Cafe Terrace at Night - Vincent Van Gogh.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/Shared/Assets.xcassets/Cafe Terrace at Night - Vincent Van Gogh.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Shared/Assets.xcassets/Calvin Klein - Kaws.imageset/Calvin Klein - Kaws.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/Shared/Assets.xcassets/Calvin Klein - Kaws.imageset/Calvin Klein - Kaws.jpg -------------------------------------------------------------------------------- /Example/Shared/Assets.xcassets/Calvin Klein - Kaws.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/Shared/Assets.xcassets/Calvin Klein - Kaws.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Shared/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/Shared/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/Shared/Assets.xcassets/Le Reve - Pablo Picasso.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/Shared/Assets.xcassets/Le Reve - Pablo Picasso.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Shared/Assets.xcassets/Le Reve - Pablo Picasso.imageset/Le Reve - Pablo Picasso.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/Shared/Assets.xcassets/Le Reve - Pablo Picasso.imageset/Le Reve - Pablo Picasso.jpg -------------------------------------------------------------------------------- /Example/Shared/Assets.xcassets/Les Demoiselles d'Avignon - Picasso.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/Shared/Assets.xcassets/Les Demoiselles d'Avignon - Picasso.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Shared/Assets.xcassets/Les Demoiselles d'Avignon - Picasso.imageset/Les Demoiselles d'Avignon - Picasso.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/Shared/Assets.xcassets/Les Demoiselles d'Avignon - Picasso.imageset/Les Demoiselles d'Avignon - Picasso.jpg -------------------------------------------------------------------------------- /Example/Shared/Assets.xcassets/Mona Lisa - Leonardo da Vinci.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/Shared/Assets.xcassets/Mona Lisa - Leonardo da Vinci.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Shared/Assets.xcassets/Mona Lisa - Leonardo da Vinci.imageset/Mona Lisa - Leonardo da Vinci.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/Shared/Assets.xcassets/Mona Lisa - Leonardo da Vinci.imageset/Mona Lisa - Leonardo da Vinci.jpg -------------------------------------------------------------------------------- /Example/Shared/Assets.xcassets/Nighthawks - Edward Hopper.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/Shared/Assets.xcassets/Nighthawks - Edward Hopper.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Shared/Assets.xcassets/Nighthawks - Edward Hopper.imageset/Nighthawks - Edward Hopper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/Shared/Assets.xcassets/Nighthawks - Edward Hopper.imageset/Nighthawks - Edward Hopper.jpg -------------------------------------------------------------------------------- /Example/Shared/Assets.xcassets/No. 210:No. 211 - Mark Rothko.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/Shared/Assets.xcassets/No. 210:No. 211 - Mark Rothko.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Shared/Assets.xcassets/No. 210:No. 211 - Mark Rothko.imageset/No. 210:No. 211 - Mark Rothko.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/Shared/Assets.xcassets/No. 210:No. 211 - Mark Rothko.imageset/No. 210:No. 211 - Mark Rothko.jpg -------------------------------------------------------------------------------- /Example/Shared/Assets.xcassets/Number 1A - Jackson Pollock.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/Shared/Assets.xcassets/Number 1A - Jackson Pollock.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Shared/Assets.xcassets/Number 1A - Jackson Pollock.imageset/Number 1A - Jackson Pollock.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/Shared/Assets.xcassets/Number 1A - Jackson Pollock.imageset/Number 1A - Jackson Pollock.jpg -------------------------------------------------------------------------------- /Example/Shared/Assets.xcassets/Self-portrait Spring 1887 - Vincent Van Gogh.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/Shared/Assets.xcassets/Self-portrait Spring 1887 - Vincent Van Gogh.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Shared/Assets.xcassets/Self-portrait Spring 1887 - Vincent Van Gogh.imageset/Self-portrait Spring 1887 - Vincent Van Gogh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/Shared/Assets.xcassets/Self-portrait Spring 1887 - Vincent Van Gogh.imageset/Self-portrait Spring 1887 - Vincent Van Gogh.jpg -------------------------------------------------------------------------------- /Example/Shared/Assets.xcassets/Skull - Jean-Michel Basquiat.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/Shared/Assets.xcassets/Skull - Jean-Michel Basquiat.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Shared/Assets.xcassets/Skull - Jean-Michel Basquiat.imageset/Skull - Jean-Michel Basquiat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/Shared/Assets.xcassets/Skull - Jean-Michel Basquiat.imageset/Skull - Jean-Michel Basquiat.jpg -------------------------------------------------------------------------------- /Example/Shared/Assets.xcassets/Woman I - Willem de Kooning.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/Shared/Assets.xcassets/Woman I - Willem de Kooning.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Shared/Assets.xcassets/Woman I - Willem de Kooning.imageset/Woman I - Willem de Kooning.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/Shared/Assets.xcassets/Woman I - Willem de Kooning.imageset/Woman I - Willem de Kooning.jpg -------------------------------------------------------------------------------- /Example/Shared/Painting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/Shared/Painting.swift -------------------------------------------------------------------------------- /Example/iOS-Objective-C/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/iOS-Objective-C/AppDelegate.h -------------------------------------------------------------------------------- /Example/iOS-Objective-C/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/iOS-Objective-C/AppDelegate.m -------------------------------------------------------------------------------- /Example/iOS-Objective-C/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/iOS-Objective-C/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/iOS-Objective-C/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/iOS-Objective-C/Info.plist -------------------------------------------------------------------------------- /Example/iOS-Objective-C/PaintingViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/iOS-Objective-C/PaintingViewController.h -------------------------------------------------------------------------------- /Example/iOS-Objective-C/PaintingViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/iOS-Objective-C/PaintingViewController.m -------------------------------------------------------------------------------- /Example/iOS-Objective-C/SceneDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/iOS-Objective-C/SceneDelegate.h -------------------------------------------------------------------------------- /Example/iOS-Objective-C/SceneDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/iOS-Objective-C/SceneDelegate.m -------------------------------------------------------------------------------- /Example/iOS-Objective-C/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/iOS-Objective-C/ViewController.h -------------------------------------------------------------------------------- /Example/iOS-Objective-C/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/iOS-Objective-C/ViewController.m -------------------------------------------------------------------------------- /Example/iOS-Objective-C/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/iOS-Objective-C/main.m -------------------------------------------------------------------------------- /Example/iOS/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/iOS/AppDelegate.swift -------------------------------------------------------------------------------- /Example/iOS/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/iOS/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/iOS/Helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/iOS/Helpers.swift -------------------------------------------------------------------------------- /Example/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/iOS/Info.plist -------------------------------------------------------------------------------- /Example/iOS/PaintingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/iOS/PaintingViewController.swift -------------------------------------------------------------------------------- /Example/iOS/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/iOS/SceneDelegate.swift -------------------------------------------------------------------------------- /Example/iOS/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/iOS/ViewController.swift -------------------------------------------------------------------------------- /Example/macOS-Objective-C/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/macOS-Objective-C/AppDelegate.h -------------------------------------------------------------------------------- /Example/macOS-Objective-C/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/macOS-Objective-C/AppDelegate.m -------------------------------------------------------------------------------- /Example/macOS-Objective-C/MainMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/macOS-Objective-C/MainMenu.h -------------------------------------------------------------------------------- /Example/macOS-Objective-C/MainMenu.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/macOS-Objective-C/MainMenu.m -------------------------------------------------------------------------------- /Example/macOS-Objective-C/NSLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/macOS-Objective-C/NSLabel.h -------------------------------------------------------------------------------- /Example/macOS-Objective-C/NSLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/macOS-Objective-C/NSLabel.m -------------------------------------------------------------------------------- /Example/macOS-Objective-C/PaintingItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/macOS-Objective-C/PaintingItem.h -------------------------------------------------------------------------------- /Example/macOS-Objective-C/PaintingItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/macOS-Objective-C/PaintingItem.m -------------------------------------------------------------------------------- /Example/macOS-Objective-C/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/macOS-Objective-C/ViewController.h -------------------------------------------------------------------------------- /Example/macOS-Objective-C/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/macOS-Objective-C/ViewController.m -------------------------------------------------------------------------------- /Example/macOS-Objective-C/macOS_Objective_C.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/macOS-Objective-C/macOS_Objective_C.entitlements -------------------------------------------------------------------------------- /Example/macOS-Objective-C/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/macOS-Objective-C/main.m -------------------------------------------------------------------------------- /Example/macOS/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/macOS/AppDelegate.swift -------------------------------------------------------------------------------- /Example/macOS/MainMenu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/macOS/MainMenu.swift -------------------------------------------------------------------------------- /Example/macOS/NSLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/macOS/NSLabel.swift -------------------------------------------------------------------------------- /Example/macOS/PaintingItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/macOS/PaintingItem.swift -------------------------------------------------------------------------------- /Example/macOS/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/macOS/ViewController.swift -------------------------------------------------------------------------------- /Example/macOS/macOS.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/macOS/macOS.entitlements -------------------------------------------------------------------------------- /Example/macOS/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Example/macOS/main.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/README.md -------------------------------------------------------------------------------- /Sources/UIImageColors/Deprecated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Sources/UIImageColors/Deprecated.swift -------------------------------------------------------------------------------- /Sources/UIImageColors/Internal/_ColorAnalyzer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Sources/UIImageColors/Internal/_ColorAnalyzer.swift -------------------------------------------------------------------------------- /Sources/UIImageColors/Internal/_ColorCounter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Sources/UIImageColors/Internal/_ColorCounter.swift -------------------------------------------------------------------------------- /Sources/UIImageColors/Internal/_HSV.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Sources/UIImageColors/Internal/_HSV.swift -------------------------------------------------------------------------------- /Sources/UIImageColors/Internal/_PixelFormat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Sources/UIImageColors/Internal/_PixelFormat.swift -------------------------------------------------------------------------------- /Sources/UIImageColors/Internal/_RGB.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Sources/UIImageColors/Internal/_RGB.swift -------------------------------------------------------------------------------- /Sources/UIImageColors/NSImage+Colors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Sources/UIImageColors/NSImage+Colors.swift -------------------------------------------------------------------------------- /Sources/UIImageColors/Resources/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Sources/UIImageColors/Resources/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /Sources/UIImageColors/ScaleQuality.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Sources/UIImageColors/ScaleQuality.swift -------------------------------------------------------------------------------- /Sources/UIImageColors/UIImage+Colors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Sources/UIImageColors/UIImage+Colors.swift -------------------------------------------------------------------------------- /Sources/UIImageColorsObjc/NSImageColorsObjc.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Sources/UIImageColorsObjc/NSImageColorsObjc.swift -------------------------------------------------------------------------------- /Sources/UIImageColorsObjc/Resources/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Sources/UIImageColorsObjc/Resources/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /Sources/UIImageColorsObjc/UIImageColorsObjc.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Sources/UIImageColorsObjc/UIImageColorsObjc.swift -------------------------------------------------------------------------------- /Sources/UIImageColorsObjc/UIImageColorsScaleQuality.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Sources/UIImageColorsObjc/UIImageColorsScaleQuality.swift -------------------------------------------------------------------------------- /Tests/UIImageColorsTests/Helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Tests/UIImageColorsTests/Helpers.swift -------------------------------------------------------------------------------- /Tests/UIImageColorsTests/UIImageColorsObjcTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Tests/UIImageColorsTests/UIImageColorsObjcTests.swift -------------------------------------------------------------------------------- /Tests/UIImageColorsTests/UIImageColorsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/Tests/UIImageColorsTests/UIImageColorsTests.swift -------------------------------------------------------------------------------- /UIImageColors.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/UIImageColors.podspec -------------------------------------------------------------------------------- /UIImageColorsObjc.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/UIImageColorsObjc.podspec -------------------------------------------------------------------------------- /preview-iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/preview-iphone.png -------------------------------------------------------------------------------- /preview-macos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FelixHerrmann/UIImageColors/HEAD/preview-macos.png --------------------------------------------------------------------------------