Reputation: 5
I know that, this can be done using GPUImageFramework. But I want it done using CoreImageFramework. Any tutorial?
Upvotes: 0
Views: 670
Reputation: 121
Apple covers tilt-shift in the CoreImage Programming Guide: Tilt-Shift Filter Recipe.
To adapt this method to a circle, you'd want to use a CIRadialGradient
instead of two CILinearGradient
s
Upvotes: 2