gavinbunney / Toucan

Fabulous Image Processing in Swift
MIT License
2.44k stars 224 forks source link

Drawing off main thread #76

Open klische opened 5 years ago

klische commented 5 years ago

Do you have any best practices/guide for using the API in a way that doesn't block the main thread?

let roundImage = Toucan(image: image).maskWithEllipse(borderWidth: 3.0, borderColor: UIColor.white).image

Especially when used in a TableView with lots of rounded images causes quite a bit of main thread activity.

toucan