-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5fc903c
commit c87ac67
Showing
2 changed files
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
Sources/OversizeCore/Extensions/Image/UIImage+Extension.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
// | ||
// Copyright © 2024 Alexander Romanov | ||
// File.swift, created on 07.11.2024 | ||
// | ||
|
||
#if canImport(UIKit) | ||
import UIKit | ||
#endif | ||
|
||
#if canImport(UIKit) | ||
public extension UIImage { | ||
var averageColor: UIColor? { | ||
guard let inputImage = CIImage(image: self) else { return nil } | ||
let extentVector = CIVector(x: inputImage.extent.origin.x, y: inputImage.extent.origin.y, z: inputImage.extent.size.width, w: inputImage.extent.size.height) | ||
|
||
guard let filter = CIFilter(name: "CIAreaAverage", parameters: [kCIInputImageKey: inputImage, kCIInputExtentKey: extentVector]) else { return nil } | ||
guard let outputImage = filter.outputImage else { return nil } | ||
|
||
var bitmap = [UInt8](repeating: 0, count: 4) | ||
let context = CIContext(options: [.workingColorSpace: kCFNull!]) | ||
context.render(outputImage, toBitmap: &bitmap, rowBytes: 4, bounds: CGRect(x: 0, y: 0, width: 1, height: 1), format: .RGBA8, colorSpace: nil) | ||
|
||
return UIColor(red: CGFloat(bitmap[0]) / 255, green: CGFloat(bitmap[1]) / 255, blue: CGFloat(bitmap[2]) / 255, alpha: CGFloat(bitmap[3]) / 255) | ||
} | ||
} | ||
#endif |