PixelColor

0.0.1

🎨. Pixel color extension with Swift and SwiftUI.
yangKJ/Color

What's New

PixelColor

2023-11-10T09:28:08Z

Add pixel color library.

PixelColor

Carthage compatible CocoaPods Compatible Platform

🎨. PixelColor is a pixel color extension with Swift and SwiftUI.

Requirements

iOS Target macOS Target Xcode Version Swift Version
iOS 10.0+ macOS 10.13+ Xcode 10.0+ Swift 5.0+

Usage

Creation (Hex String)

Firstly, Provides useful initializers to create colors using hex strings or values:

let color = UIColor.init(hex: "#3498DB")
// equivalent to
// color = UIColor.init(hex: 0x3498DB)

To be platform independent, the typealias CrossPlatformColor can also be used:

let color = CrossPlatformColor.init(hex: "#3498DB")
// On iOS, WatchOS or tvOS, equivalent to
// color = UIColor.init(hex: "#3498DB")
// On OSX, equivalent to
// color = NSColor.init(hex: "#3498DB")

You can also retrieve the RGBA value and components very easily using multiple methods like toHex, toRGBA, etc.

SwiftUI

From the v5, Also support basic methods to create and manipulate colors with SwiftUI.

let color = Color.init(hex: "#3498DB")

Darken & Lighten

These two create a new pixel color by adjusting the lightness of the receiver.

lighten and darken color

let pixel = PixelColor.init(hex: "#C0392B")

let lighter = pixel.lighter()
// equivalent to
// lighter = pixel.lighter(amount: 0.2)

let darker = pixel.darkened()
// equivalent to
// darker = pixel.darker(amount: 0.2)

Saturate, Desaturate & Grayscale

These will adjust the saturation of the pixel color object, much like darkened and lighter adjusted the lightness.

Again, you need to use a value between 0 and 1.

saturate, desaturate and grayscale color

let pixel = PixelColor.init(hex: "#C0392B")

let saturated = pixel.saturated()
// equivalent to
// saturated = pixel.saturated(amount: 0.2)

let desaturated = pixel.desaturated()
// equivalent to
// desaturated = pixel.desaturated(amount: 0.2)

// equivalent to
// let grayscaled = pixel.grayscaled(mode: .weighted)
let grayscaled = pixel.grayscaled()

Adjust Hue & Complement

These adjust the hue value of the color in the same way like the others do. Again, it takes a value between 0 and 1 to update the value.

ajusted-hue and complement color

let pixel = PixelColor.init(hex: "#C0392B")

// Hue values are in degrees
let adjustHue = pixel.adjustedHue(amount: 45)

let complemented = pixel.complemented()
// equivalent to
// complemented = pixel.adjustedHue(amount: 180)

Tint & Shade

A tint is the mixture of a pixel color with white and a shade is the mixture of a pixel color with black.

Again, it takes a value between 0 and 1 to update the value.

tint and shade color

let pixel = PixelColor.init(hex: "#C0392B")

let tinted = pixel.tinted()
// equivalent to
// tinted = pixel.tinted(amount: 0.2)

let shaded = pixel.shaded()
// equivalent to
// shaded = pixel.shaded(amount: 0.2)

Invert

This can invert the pixel color object. The red, green, and blue values are inverted, while the opacity is left alone.

invert color

let pixel = PixelColor.init(hex: "#C0392B")

let inverted = pixel.inverted()

Mixing

This can mix a given pixel color with the receiver.

It takes the average of each of the RGB components, optionally weighted by the given percentage (value between 0 and 1).

mix color

let pixel = PixelColor.init(hex: "#C0392B")

let mixed = pixel.mixed(other: .blue)
// equivalent to
// mixed = pixel.mixed(weight: 0.5, other: .blue)
// or
// mixed = pixel.mixed(in: .rgb, weight: 0.5, other: .blue)

CocoaPods

  • If you want to import PixelColor module, you need in your Podfile:
pod 'PixelColor'

Swift Package Manager

Swift Package Manager is a tool for managing the distribution of Swift code. It’s integrated with the Swift build system to automate the process of downloading, compiling, and linking dependencies.

Xcode 11+ is required to build PixelColor using Swift Package Manager.

To integrate PixelColor into your Xcode project using Swift Package Manager, add it to the dependencies value of your Package.swift:

dependencies: [
    .package(url: "https://github.com/yangKJ/PixelColor.git", branch: "master"),
]

Remarks

The general process is almost like this, the Demo is also written in great detail, you can check it out for yourself.🎷

PixelColorDemo

Tip: If you find it helpful, please help me with a star. If you have any questions or needs, you can also issue.

Thanks.πŸŽ‡

About the author

Buy me a coffee or support me on GitHub.

yellow-button

Alipay or WeChat. Thanks.


License

PixelColor is available under the MIT license. See the LICENSE file for more info.


Description

  • Swift Tools 5.4.0
View More Packages from this Author

Dependencies

  • None
Last updated: Thu Dec 28 2023 08:00:38 GMT-1000 (Hawaii-Aleutian Standard Time)