123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 |
- //
- // EFQRCode+GIF.swift
- // EFQRCode
- //
- // Created by EyreFree on 2017/10/23.
- //
- // Copyright (c) 2017 EyreFree <eyrefree@eyrefree.org>
- //
- // Permission is hereby granted, free of charge, to any person obtaining a copy
- // of this software and associated documentation files (the "Software"), to deal
- // in the Software without restriction, including without limitation the rights
- // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- // copies of the Software, and to permit persons to whom the Software is
- // furnished to do so, subject to the following conditions:
- //
- // The above copyright notice and this permission notice shall be included in
- // all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- // THE SOFTWARE.
- import Foundation
- import CoreGraphics
- import ImageIO
- #if os(macOS)
- import CoreServices
- #else
- import MobileCoreServices
- #endif
- public extension EFQRCode {
- private static let framesPerSecond = 24
- static var tempResultPath: URL?
- private static func batchWatermark(frames: inout [CGImage], generator: EFQRCodeGenerator, start: Int, end: Int) {
- for index in start ... end {
- generator.setWatermark(watermark: frames[index])
- if let frameWithCode = generator.generate() {
- frames[index] = frameWithCode
- }
- }
- }
-
- static func generateWithGIF(data: Data, generator: EFQRCodeGenerator, pathToSave: URL? = nil, delay: Double? = nil, loopCount: Int? = nil, useMultipleThread:Bool = false) -> Data? {
- if let source = CGImageSourceCreateWithData(data as CFData, nil) {
- var frames = source.toCGImages()
- var fileProperties = CGImageSourceCopyProperties(source, nil)
- var framePropertiesArray = frames.indices.compactMap { index in
- CGImageSourceCopyPropertiesAtIndex(source, index, nil)
- }
- if let delay = delay {
- for (index, value) in framePropertiesArray.enumerated() {
- if var tempDict = value as? [String: Any] {
- if var gifDict = tempDict[kCGImagePropertyGIFDictionary as String] as? [String: Any] {
- gifDict.updateValue(delay, forKey: kCGImagePropertyGIFDelayTime as String)
- tempDict.updateValue(gifDict, forKey: kCGImagePropertyGIFDictionary as String)
- }
- framePropertiesArray[index] = tempDict as CFDictionary
- }
- }
- }
- if let loopCount = loopCount,
- var tempDict = fileProperties as? [String: Any] {
- if var gifDict = tempDict[kCGImagePropertyGIFDictionary as String] as? [String: Any] {
- gifDict.updateValue(loopCount, forKey: kCGImagePropertyGIFLoopCount as String)
- tempDict.updateValue(gifDict, forKey: kCGImagePropertyGIFDictionary as String)
- }
- fileProperties = tempDict as CFDictionary
- }
- if useMultipleThread {
- let group = DispatchGroup()
- let threshold = frames.count / framesPerSecond
- var i: Int = 0
- while i < threshold {
- let local = i
- group.enter()
- DispatchQueue.global(qos: .default).async {
- batchWatermark(frames: &frames, generator: generator, start: local * framesPerSecond, end: (local + 1) * framesPerSecond - 1)
- group.leave()
- }
- i += 1
- }
- group.enter()
- DispatchQueue.global(qos: .default).async {
- batchWatermark(frames: &frames, generator: generator, start: i * 20, end: frames.count - 1)
- group.leave()
- }
- group.wait()
-
- } else {
- // Clear watermark
- for (index, frame) in frames.enumerated() {
- generator.setWatermark(watermark: frame)
- if let frameWithCode = generator.generate() {
- frames[index] = frameWithCode
- }
- }
- }
-
- if let fileProperties = fileProperties, framePropertiesArray.count == frames.count,
- let url = frames.saveToGIFFile(framePropertiesArray: framePropertiesArray,
- fileProperties: fileProperties, url: pathToSave) {
- return try? Data(contentsOf: url)
- }
- }
- return nil
- }
- }
- public extension CGImageSource {
- // GIF
- func toCGImages() -> [CGImage] {
- let gifCount = CGImageSourceGetCount(self)
- let frames: [CGImage] = ( 0 ..< gifCount ).compactMap { index in
- CGImageSourceCreateImageAtIndex(self, index, nil)
- }
- return frames
- }
- }
- extension Array where Element: CGImage {
- public func saveToGIFFile(framePropertiesArray: [CFDictionary], fileProperties: CFDictionary, url: URL? = nil) -> URL? {
- var fileURL = url
- if nil == fileURL {
- let documentsDirectoryURL: URL? = try? FileManager.default.url(
- for: .documentDirectory, in: .userDomainMask, appropriateFor: nil, create: true
- )
- // The URL to write to. If the URL already exists, the data at this location is overwritten.
- fileURL = documentsDirectoryURL?.appendingPathComponent("EFQRCode_temp.gif")
- }
- EFQRCode.tempResultPath = fileURL
- guard let url = fileURL as CFURL?,
- let destination = CGImageDestinationCreateWithURL(url, kUTTypeGIF, count, nil)
- else {
- return nil // Can't create path
- }
- CGImageDestinationSetProperties(destination, fileProperties)
- for (index, image) in enumerated() {
- CGImageDestinationAddImage(destination, image, framePropertiesArray[index])
- }
- guard CGImageDestinationFinalize(destination) else {
- // Failed to finalize the image destination
- return nil
- }
- return fileURL
- }
- }
|