1amageek Sumo Save

Sumo is a library that prepares for fast upload for iOS. It is effective when uploading by selecting images continuously.

Project README

Sumo

Sumo is a library that prepares for fast upload for iOS. It is effective when uploading by selecting images continuously. Sumo will prepare for uploading immediately after the image is selected. Multiple selected images are compiled into one file and compressed. One compressed file can communicate without overhead.

Feature 🎉

  • ☑️ Non blocking Main thread.
  • ☑️ Fast resizing.
  • ☑️ Task is cancelable.
  • ☑️ Multi sessions.

Usage

Sumo consists of sessions and tasks. Multiple tasks are associated with one session, and you can obtain obtain artifacts by zip the session.

override func viewDidLoad() {
    super.viewDidLoad()
    var options: Sumo.Session.Options = Sumo.Session.Options()
    // Target of image resizing
    options.imageTargetSize = CGSize(width: 500, height: 500)
    Sumo.shared.startSession(options: options)
}

For example in CollectionView's

  • func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath)
  • func collectionView(_ collectionView: UICollectionView, didDeselectItemAt indexPath: IndexPath)
// Compress and process the image in the background.
func didSelectItem(indexPath: IndexPath, asset: PHAsset) {
    Sumo.shared.startWorflow(asset.localIdentifier) { (error) in
        if let error = error {
            debugPrint(error)
            return
        }
    }
}

// Cancel the image being compressed.
func didDeselectItem(indexPath: IndexPath, asset: PHAsset) {
    Sumo.shared.cancel(asset.localIdentifier)
}
// Stop all processing.
@objc private func cancel() {
    Sumo.shared.stop()
}

// Cancel the task being processed. The session will continue to remain.
@objc private func reset() {
    Sumo.shared.reset()
}

// Compress the resized photo to zip.
@objc private func zip() {
    Sumo.shared.zip { (url, error) in
        // Transfer to any server.
    }
}

AssemblyLine is generalized to Sumo.

Open Source Agenda is not affiliated with "1amageek Sumo" Project. README Source: 1amageek/Sumo
Stars
241
Open Issues
0
Last Commit
7 years ago
Repository
License
MIT

Open Source Agenda Badge

Open Source Agenda Rating