Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/seaburg/IGIdenticon
Swift identicon generator
https://github.com/seaburg/IGIdenticon
github-avatar identicon
Last synced: about 1 month 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 11 years ago)
- Default Branch: master
- Last Pushed: 2021-06-09T07:55:25.000Z (over 3 years ago)
- Last Synced: 2024-10-30T17:18:02.470Z (2 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
[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)
[![CocoaPods Compatible](https://img.shields.io/cocoapods/v/IGIdenticon.svg)](https://img.shields.io/cocoapods/v/IGIdenticon.svg)This library is a port of [identicon](https://github.com/donpark/identicon) library that generates identicon.
![Screenshot example](https://raw.github.com/Seaburg/IGIdenticon/master/Screenshot/screenshot.png)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))
```
-----