DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Zones

Culture and Methodologies Agile Career Development Methodologies Team Management
Data Engineering AI/ML Big Data Data Databases IoT
Software Design and Architecture Cloud Architecture Containers Integration Microservices Performance Security
Coding Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Culture and Methodologies
Agile Career Development Methodologies Team Management
Data Engineering
AI/ML Big Data Data Databases IoT
Software Design and Architecture
Cloud Architecture Containers Integration Microservices Performance Security
Coding
Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance
Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks

Generative AI has transformed nearly every industry. How can you leverage GenAI to improve your productivity and efficiency?

SBOMs are essential to circumventing software supply chain attacks, and they provide visibility into various software components.

Related

  • Integrating Cursor and LLM for BDD Testing With Playwright MCP (Model Context Protocol)
  • Next Evolution in Integration: Architecting With Intent Using Model Context Protocol
  • Integrating Model Context Protocol (MCP) With Microsoft Copilot Studio AI Agents
  • Evolution of Cloud Services for MCP/A2A Protocols in AI Agents

Trending

  • DZone's Article Submission Guidelines
  • How to Submit a Post to DZone
  • Understanding k-NN Search in Elasticsearch
  • Advanced gRPC in Microservices: Hard-Won Insights and Best Practices
  1. DZone
  2. Coding
  3. Frameworks
  4. Applying Gaussian Blur to UIViews with Swift Protocol Extensions

Applying Gaussian Blur to UIViews with Swift Protocol Extensions

By 
Simon Gladman user avatar
Simon Gladman
·
Sep. 21, 15 · Tutorial
Likes (2)
Comment
Save
Tweet
Share
14.4K Views

Join the DZone community and get the full member experience.

Join For Free


Here's a fun little experiment showing the power of Swift's Protocol Extensions to apply a CIGaussianBlur Core Image filter to any UIView with no developer overhead. The code could be extended to apply any Core Image filter such as a half tone screen or colour adjustment.


Blurable is a simple protocol that borrows some of the methods and variables from a UIView:

 var layer: CALayer { get }
    var subviews: [UIView] { get }
    var frame: CGRect { get }

    func addSubview(view: UIView)

    func bringSubviewToFront(view: UIView)


...and adds a few of its own:



Obviously, just being a protocol, it doesn't do much on its own. However, by adding an extension, I can introduce default functionality. Furthermore, by extending UIView to implement Blurable, every component from a segmented control to a horizontal slider can be blurred:


    

extension UIView: Blurable

    {



    }



The Mechanics of Blurable

Getting a blurred representation of a UIView is pretty simple: I need to begin an image context, use the view's layer's renderInContext method to render into the context and then get a UIImage from the context:


    UIGraphicsBeginImageContextWithOptions(CGSize(width: frame.width, height: frame.height), false, 1)



    layer.renderInContext(UIGraphicsGetCurrentContext()!)



    let image = UIGraphicsGetImageFromCurrentImageContext()







    UIGraphicsEndImageContext();


Once I have the image populated, it's a fairly standard workflow to apply a Gaussian blur to it:


    guard let blur = CIFilter(name: "CIGaussianBlur") else

    {

        return

    }





    blur.setValue(CIImage(image: image), forKey: kCIInputImageKey)

    blur.setValue(blurRadius, forKey: kCIInputRadiusKey)



    let ciContext  = CIContext(options: nil)



    let result = blur.valueForKey(kCIOutputImageKey) as! CIImage!



    let boundingRect = CGRect(x: -blurRadius * 4,

        y: -blurRadius * 4,

        width: frame.width + (blurRadius * 8),

        height: frame.height + (blurRadius * 8))



    let cgImage = ciContext.createCGImage(result, fromRect: boundingRect)







    let filteredImage = UIImage(CGImage: cgImage)


A blurred image will be larger than its input image, so I need to be explicit about the size I require in createCGImage.


The next step is to add a UIImageView to my view and hide all the other views. I've subclassed UIImageView to BlurOverlay so that when it comes to removing it, I can be sure I'm not removing an existing UIImageView: 


 let blurOverlay = BlurOverlay()
    blurOverlay.frame = boundingRect

    blurOverlay.image = filteredImage

    subviews.forEach{ $0.hidden = true }


    addSubview(blurOverlay)



When it comes to de-blurring, I want to ensure the last subview is one of my BlurOverlay  remove it and unhide the existing views:

  func unBlur()
    {
        if let blurOverlay = subviews.last as? BlurOverlay
        {
            blurOverlay.removeFromSuperview()

            subviews.forEach{ $0.hidden = false }
        }

    }



Finally, to see if a UIView is currently blurred, I just need to see if its last subview is a BlurOverlay:


  var isBlurred: Bool
  {
      return subviews.last is BlurOverlay
  }


Blurring a UIView

To blur and de-blur, just invoke blur() and unBlur() on an UIView:


    segmentedControl.unBlur()
    segmentedControl.blur(blurRadius: 2)


Source Code

As always, the source code for this project is available at my GitHub repository here. Enjoy!




Protocol (object-oriented programming) Gaussian (software) Swift (programming language)

Published at DZone with permission of Simon Gladman, DZone MVB. See the original article here.

Opinions expressed by DZone contributors are their own.

Related

  • Integrating Cursor and LLM for BDD Testing With Playwright MCP (Model Context Protocol)
  • Next Evolution in Integration: Architecting With Intent Using Model Context Protocol
  • Integrating Model Context Protocol (MCP) With Microsoft Copilot Studio AI Agents
  • Evolution of Cloud Services for MCP/A2A Protocols in AI Agents

Partner Resources

×

Comments

The likes didn't load as expected. Please refresh the page and try again.

ABOUT US

  • About DZone
  • Support and feedback
  • Community research
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 100
  • Nashville, TN 37211
  • [email protected]

Let's be friends: