All Projects → globchastyy → Swiftuiimageeffects

globchastyy / Swiftuiimageeffects

Swift port of Apple UIImage+UIImageEffecs category.

Programming Languages

swift
15916 projects

Projects that are alternatives of or similar to Swiftuiimageeffects

Bkasciiimage
Convert UIImage to ASCII art
Stars: ✭ 421 (+97.65%)
Mutual labels:  image-processing, uiimage
Super Blur
Screen and UI gaussian blur for Unity
Stars: ✭ 543 (+154.93%)
Mutual labels:  effects, blur
Gaussianblur
An easy and fast library to apply gaussian blur filter on any images. 🎩
Stars: ✭ 473 (+122.07%)
Mutual labels:  image-processing, blur
Bild
Image processing algorithms in pure Go
Stars: ✭ 3,431 (+1510.8%)
Mutual labels:  image-processing, effects
Pesdk Ios Examples
A fully customizable photo editor for your app.
Stars: ✭ 837 (+292.96%)
Mutual labels:  image-processing, blur
Shadowview
An iOS Library that makes shadows management easy on UIView.
Stars: ✭ 391 (+83.57%)
Mutual labels:  uikit, blur
Sablurimageview
You can use blur effect and it's animation easily to call only two methods.
Stars: ✭ 538 (+152.58%)
Mutual labels:  blur, uiimage
Nyximageskit
A set of efficient categories for UIImage class. It allows filtering, resizing, masking, rotating, enhancing... and more.
Stars: ✭ 2,553 (+1098.59%)
Mutual labels:  image-processing, uiimage
Postprocessing
A post processing library that provides the means to implement image filter effects for three.js.
Stars: ✭ 830 (+289.67%)
Mutual labels:  image-processing, effects
Visualeffectview
Dynamic blur background view with tint color (UIVisualEffectView subclass) 📱
Stars: ✭ 795 (+273.24%)
Mutual labels:  effects, blur
ECardFlow
🍭A custom ViewPager for multiple card flow system. && A layout which provide beautiful background effects for ViewPager.
Stars: ✭ 47 (-77.93%)
Mutual labels:  effects, blur
Uiimageheic
UIImage category that adds familiar HEIC encoding.
Stars: ✭ 125 (-41.31%)
Mutual labels:  uikit, uiimage
RainbowTaskbar
Customizable Windows taskbar effects.
Stars: ✭ 39 (-81.69%)
Mutual labels:  effects, blur
Tocropviewcontroller
A view controller for iOS that allows users to crop portions of UIImage objects
Stars: ✭ 4,210 (+1876.53%)
Mutual labels:  image-processing, uiimage
KBImageView
UIImageView with Ken Burns effect.
Stars: ✭ 48 (-77.46%)
Mutual labels:  uikit, uiimage
Blurry
Blurry is an easy blur library for Android
Stars: ✭ 5,092 (+2290.61%)
Mutual labels:  image-processing, blur
Glasscord
[BUGFIXES ONLY, SUPPORT WILL DROP MAR 1, 2021] Injecting composition effects into Electron applications!
Stars: ✭ 737 (+246.01%)
Mutual labels:  effects, blur
Collectionviewpaginglayout
a simple but highly customizable paging layout for UICollectionView.
Stars: ✭ 947 (+344.6%)
Mutual labels:  uikit, blur
Stackblur Go
A fast, almost Gaussian Blur implementation in Go
Stars: ✭ 189 (-11.27%)
Mutual labels:  image-processing, blur
Cronexpbuilder
Quartz 的Cron任务调度表达式一般人很难理解,在Googole上查询也没有发现类似的代码,所以开发了一个对Quartz Cron 表达式的可视化双向解析和生成的一个java的GUI程序,供使用Quartz的程序员参考和使用.
Stars: ✭ 204 (-4.23%)
Mutual labels:  quartz

SwiftUIImageEffects is swift port from Apple UIImage+ImageEffects category. Made for practicing purpose.

Usage

To use this extension just add file Source/UIImageEffects.swift to your project. See example project.

image = image.applyLightEffect()
image = image.applyExtraLightEffect()
image = image.applyTintEffectWithColor(UIColor.blueColor())
image = image.applyBlurWithRadius(20, tintColor: UIColor(white: 0.11, alpha: 0.73), saturationDeltaFactor: 1.8)

Desription from original project:

Blurring and Tinting an Image Using the Accelerate Framework

UIImageEffects shows how to create and apply blur and tint effects to an image using the vImage, Quartz, and UIKit frameworks. The vImage framework is suited for high-performance image processing. Using vImage, your app gets all the benefits of vector processing without the need for you to write vectorized code.

Using the Sample

  1. Launch the UIImageEffects project using Xcode.
  2. Make sure the project's current target is set to UIImageEffects.
  3. Build and run the UIImageEffects target.
  4. Tap the device screen (or click the simulator screen) to cycle through the effects.

You’ll notice that the app is very responsive despite the calculation-intense blur effects.

...

================================================== Copyright (C) 2013 Apple Inc. All rights reserved.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].