https://github.com/seaburg/IGIdenticon
Swift identicon generator
https://github.com/seaburg/IGIdenticon
github-avatar identicon
Last synced: 4 months ago
JSON representation
Swift identicon generator
- Host: GitHub
- URL: https://github.com/seaburg/IGIdenticon
- Owner: seaburg
- License: mit
- Created: 2013-08-04T15:21:19.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2021-06-09T07:55:25.000Z (over 4 years ago)
- Last Synced: 2025-07-09T09:56:17.484Z (5 months ago)
- Topics: github-avatar, identicon
- Language: Swift
- Homepage:
- Size: 285 KB
- Stars: 90
- Watchers: 4
- Forks: 11
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# IGIdenticon
[](https://github.com/Carthage/Carthage)
[](https://img.shields.io/cocoapods/v/IGIdenticon.svg)
This library is a port of [identicon](https://github.com/donpark/identicon) library that generates identicon.

Installation
------------
Carthage
```
github "seaburg/IGIdenticon"
```
CocoaPods
```
pod 'IGIdenticon'
```
SwiftPM
```swift
dependencies: [
.package(url: "https://github.com/seaburg/IGIdenticon.git",
from: "0.7.0")
]
```
Usage
-----
```swift
imageView.image = Identicon().icon(from: "string", size: CGSize(width: 100, height: 100))
```
-----