123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209 |
- //
- // GIFMaker.swift
- // LMS
- //
- // Created by Suraj Kumar Mandal on 20/08/22.
- //
- import Foundation
- import UIKit
- import ImageIO
- // FIXME: comparison operators with optionals were removed from the Swift Standard Libary.
- // Consider refactoring the code to use the non-optional operators.
- fileprivate func < <T : Comparable>(lhs: T?, rhs: T?) -> Bool {
- switch (lhs, rhs) {
- case let (l?, r?):
- return l < r
- case (nil, _?):
- return true
- default:
- return false
- }
- }
- extension UIImage {
-
- public class func gifImageWithData(_ data: Data) -> UIImage? {
- guard let source = CGImageSourceCreateWithData(data as CFData, nil) else {
- print("image doesn't exist")
- return nil
- }
-
- return UIImage.animatedImageWithSource(source)
- }
-
- public class func gifImageWithURL(_ gifUrl:String) -> UIImage? {
- guard let bundleURL:URL? = URL(string: gifUrl)
- else {
- print("image named \"\(gifUrl)\" doesn't exist")
- return nil
- }
- guard let imageData = try? Data(contentsOf: bundleURL!) else {
- print("image named \"\(gifUrl)\" into NSData")
- return nil
- }
-
- return gifImageWithData(imageData)
- }
-
- public class func gifImageWithName(_ name: String) -> UIImage? {
- guard let bundleURL = Bundle.main
- .url(forResource: name, withExtension: "gif") else {
- print("SwiftGif: This image named \"\(name)\" does not exist")
- return nil
- }
- guard let imageData = try? Data(contentsOf: bundleURL) else {
- print("SwiftGif: Cannot turn image named \"\(name)\" into NSData")
- return nil
- }
-
- return gifImageWithData(imageData)
- }
-
- class func delayForImageAtIndex(_ index: Int, source: CGImageSource!) -> Double {
- var delay = 0.1
-
- let cfProperties = CGImageSourceCopyPropertiesAtIndex(source, index, nil)
- let gifProperties: CFDictionary = unsafeBitCast(
- CFDictionaryGetValue(cfProperties,
- Unmanaged.passUnretained(kCGImagePropertyGIFDictionary).toOpaque()),
- to: CFDictionary.self)
-
- var delayObject: AnyObject = unsafeBitCast(
- CFDictionaryGetValue(gifProperties,
- Unmanaged.passUnretained(kCGImagePropertyGIFUnclampedDelayTime).toOpaque()),
- to: AnyObject.self)
- if delayObject.doubleValue == 0 {
- delayObject = unsafeBitCast(CFDictionaryGetValue(gifProperties,
- Unmanaged.passUnretained(kCGImagePropertyGIFDelayTime).toOpaque()), to: AnyObject.self)
- }
-
- delay = delayObject as! Double
-
- if delay < 0.1 {
- delay = 0.1
- }
-
- return delay
- }
-
- class func gcdForPair(_ a: Int?, _ b: Int?) -> Int {
- var a = a
- var b = b
- if b == nil || a == nil {
- if b != nil {
- return b!
- } else if a != nil {
- return a!
- } else {
- return 0
- }
- }
-
- if a < b {
- let c = a
- a = b
- b = c
- }
-
- var rest: Int
- while true {
- rest = a! % b!
-
- if rest == 0 {
- return b!
- } else {
- a = b
- b = rest
- }
- }
- }
-
- class func gcdForArray(_ array: Array<Int>) -> Int {
- if array.isEmpty {
- return 1
- }
-
- var gcd = array[0]
-
- for val in array {
- gcd = UIImage.gcdForPair(val, gcd)
- }
-
- return gcd
- }
-
- class func animatedImageWithSource(_ source: CGImageSource) -> UIImage? {
- let count = CGImageSourceGetCount(source)
- var images = [CGImage]()
- var delays = [Int]()
-
- for i in 0..<count {
- if let image = CGImageSourceCreateImageAtIndex(source, i, nil) {
- images.append(image)
- }
-
- let delaySeconds = UIImage.delayForImageAtIndex(Int(i),
- source: source)
- delays.append(Int(delaySeconds * 1000.0)) // Seconds to ms
- }
-
- let duration: Int = {
- var sum = 0
-
- for val: Int in delays {
- sum += val
- }
-
- return sum
- }()
-
- let gcd = gcdForArray(delays)
- var frames = [UIImage]()
-
- var frame: UIImage
- var frameCount: Int
- for i in 0..<count {
- frame = UIImage(cgImage: images[Int(i)])
- frameCount = Int(delays[Int(i)] / gcd)
-
- for _ in 0..<frameCount {
- frames.append(frame)
- }
- }
-
- let animation = UIImage.animatedImage(with: frames,
- duration: Double(duration) / 1000.0)
-
- return animation
- }
- }
- // How to use gif maker
- /*
- #2 : Load GIF image Using Name
- let jeremyGif = UIImage.gifImageWithName("funny")
- let imageView = UIImageView(image: jeremyGif)
- imageView.frame = CGRect(x: 20.0, y: 50.0, width: self.view.frame.size.width - 40, height: 150.0)
- view.addSubview(imageView)
- #3 : Load GIF image Using Data
- let imageData = try? Data(contentsOf: Bundle.main.url(forResource: "play", withExtension: "gif")!)
- let advTimeGif = UIImage.gifImageWithData(imageData!)
- let imageView2 = UIImageView(image: advTimeGif)
- imageView2.frame = CGRect(x: 20.0, y: 220.0, width:
- self.view.frame.size.width - 40, height: 150.0)
- view.addSubview(imageView2)
- #4 : Load GIF image Using URL
- let gifURL : String = "http://www.gifbin.com/bin/4802swswsw04.gif"
- let imageURL = UIImage.gifImageWithURL(gifURL)
- let imageView3 = UIImageView(image: imageURL)
- imageView3.frame = CGRect(x: 20.0, y: 390.0, width: self.view.frame.size.width - 40, height: 150.0)
- view.addSubview(imageView3)
- */
|