Skip to content

Instantly share code, notes, and snippets.

View YidingW's full-sized avatar
🏠
Working from home

Yiding YidingW

🏠
Working from home
  • Chicago, IL, US
View GitHub Profile
@foxxjnm
foxxjnm / Blur.cs
Created February 16, 2015 15:58
Xamarin.iOS Image Blur
public static UIImage Blur(this UIImage image, float blurRadius = 25f)
{
if (image != null)
{
// Create a new blurred image.
var imageToBlur = new CIImage (image);
var blur = new CIGaussianBlur ();
blur.Image = imageToBlur;
blur.Radius = blurRadius;