GIFMaker.swift 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. //
  2. // GIFMaker.swift
  3. // LMS
  4. //
  5. // Created by Suraj Kumar Mandal on 20/08/22.
  6. //
  7. import Foundation
  8. import UIKit
  9. import ImageIO
  10. // FIXME: comparison operators with optionals were removed from the Swift Standard Libary.
  11. // Consider refactoring the code to use the non-optional operators.
  12. fileprivate func < <T : Comparable>(lhs: T?, rhs: T?) -> Bool {
  13. switch (lhs, rhs) {
  14. case let (l?, r?):
  15. return l < r
  16. case (nil, _?):
  17. return true
  18. default:
  19. return false
  20. }
  21. }
  22. extension UIImage {
  23. public class func gifImageWithData(_ data: Data) -> UIImage? {
  24. guard let source = CGImageSourceCreateWithData(data as CFData, nil) else {
  25. print("image doesn't exist")
  26. return nil
  27. }
  28. return UIImage.animatedImageWithSource(source)
  29. }
  30. public class func gifImageWithURL(_ gifUrl:String) -> UIImage? {
  31. guard let bundleURL:URL? = URL(string: gifUrl)
  32. else {
  33. print("image named \"\(gifUrl)\" doesn't exist")
  34. return nil
  35. }
  36. guard let imageData = try? Data(contentsOf: bundleURL!) else {
  37. print("image named \"\(gifUrl)\" into NSData")
  38. return nil
  39. }
  40. return gifImageWithData(imageData)
  41. }
  42. public class func gifImageWithName(_ name: String) -> UIImage? {
  43. guard let bundleURL = Bundle.main
  44. .url(forResource: name, withExtension: "gif") else {
  45. print("SwiftGif: This image named \"\(name)\" does not exist")
  46. return nil
  47. }
  48. guard let imageData = try? Data(contentsOf: bundleURL) else {
  49. print("SwiftGif: Cannot turn image named \"\(name)\" into NSData")
  50. return nil
  51. }
  52. return gifImageWithData(imageData)
  53. }
  54. class func delayForImageAtIndex(_ index: Int, source: CGImageSource!) -> Double {
  55. var delay = 0.1
  56. let cfProperties = CGImageSourceCopyPropertiesAtIndex(source, index, nil)
  57. let gifProperties: CFDictionary = unsafeBitCast(
  58. CFDictionaryGetValue(cfProperties,
  59. Unmanaged.passUnretained(kCGImagePropertyGIFDictionary).toOpaque()),
  60. to: CFDictionary.self)
  61. var delayObject: AnyObject = unsafeBitCast(
  62. CFDictionaryGetValue(gifProperties,
  63. Unmanaged.passUnretained(kCGImagePropertyGIFUnclampedDelayTime).toOpaque()),
  64. to: AnyObject.self)
  65. if delayObject.doubleValue == 0 {
  66. delayObject = unsafeBitCast(CFDictionaryGetValue(gifProperties,
  67. Unmanaged.passUnretained(kCGImagePropertyGIFDelayTime).toOpaque()), to: AnyObject.self)
  68. }
  69. delay = delayObject as! Double
  70. if delay < 0.1 {
  71. delay = 0.1
  72. }
  73. return delay
  74. }
  75. class func gcdForPair(_ a: Int?, _ b: Int?) -> Int {
  76. var a = a
  77. var b = b
  78. if b == nil || a == nil {
  79. if b != nil {
  80. return b!
  81. } else if a != nil {
  82. return a!
  83. } else {
  84. return 0
  85. }
  86. }
  87. if a < b {
  88. let c = a
  89. a = b
  90. b = c
  91. }
  92. var rest: Int
  93. while true {
  94. rest = a! % b!
  95. if rest == 0 {
  96. return b!
  97. } else {
  98. a = b
  99. b = rest
  100. }
  101. }
  102. }
  103. class func gcdForArray(_ array: Array<Int>) -> Int {
  104. if array.isEmpty {
  105. return 1
  106. }
  107. var gcd = array[0]
  108. for val in array {
  109. gcd = UIImage.gcdForPair(val, gcd)
  110. }
  111. return gcd
  112. }
  113. class func animatedImageWithSource(_ source: CGImageSource) -> UIImage? {
  114. let count = CGImageSourceGetCount(source)
  115. var images = [CGImage]()
  116. var delays = [Int]()
  117. for i in 0..<count {
  118. if let image = CGImageSourceCreateImageAtIndex(source, i, nil) {
  119. images.append(image)
  120. }
  121. let delaySeconds = UIImage.delayForImageAtIndex(Int(i),
  122. source: source)
  123. delays.append(Int(delaySeconds * 1000.0)) // Seconds to ms
  124. }
  125. let duration: Int = {
  126. var sum = 0
  127. for val: Int in delays {
  128. sum += val
  129. }
  130. return sum
  131. }()
  132. let gcd = gcdForArray(delays)
  133. var frames = [UIImage]()
  134. var frame: UIImage
  135. var frameCount: Int
  136. for i in 0..<count {
  137. frame = UIImage(cgImage: images[Int(i)])
  138. frameCount = Int(delays[Int(i)] / gcd)
  139. for _ in 0..<frameCount {
  140. frames.append(frame)
  141. }
  142. }
  143. let animation = UIImage.animatedImage(with: frames,
  144. duration: Double(duration) / 1000.0)
  145. return animation
  146. }
  147. }
  148. // How to use gif maker
  149. /*
  150. #2 : Load GIF image Using Name
  151. let jeremyGif = UIImage.gifImageWithName("funny")
  152. let imageView = UIImageView(image: jeremyGif)
  153. imageView.frame = CGRect(x: 20.0, y: 50.0, width: self.view.frame.size.width - 40, height: 150.0)
  154. view.addSubview(imageView)
  155. #3 : Load GIF image Using Data
  156. let imageData = try? Data(contentsOf: Bundle.main.url(forResource: "play", withExtension: "gif")!)
  157. let advTimeGif = UIImage.gifImageWithData(imageData!)
  158. let imageView2 = UIImageView(image: advTimeGif)
  159. imageView2.frame = CGRect(x: 20.0, y: 220.0, width:
  160. self.view.frame.size.width - 40, height: 150.0)
  161. view.addSubview(imageView2)
  162. #4 : Load GIF image Using URL
  163. let gifURL : String = "http://www.gifbin.com/bin/4802swswsw04.gif"
  164. let imageURL = UIImage.gifImageWithURL(gifURL)
  165. let imageView3 = UIImageView(image: imageURL)
  166. imageView3.frame = CGRect(x: 20.0, y: 390.0, width: self.view.frame.size.width - 40, height: 150.0)
  167. view.addSubview(imageView3)
  168. */