filestack/filestack-swift

View on GitHub
Sources/FilestackSDK/Public/Transforms/NegativeTransform.swift

Summary

Maintainability
A
0 mins
Test Coverage
//
//  NegativeTransform.swift
//  FilestackSDK
//
//  Created by Mihály Papp on 14/06/2018.
//  Copyright © 2018 Filestack. All rights reserved.
//

import Foundation

/// Returns a negative image by portraying the lightest area as the darkest and the darkest areas as the lightest.
public class NegativeTransform: Transform {
    // MARK: - Lifecycle

    /// Initializes a `NegativeTransform` object.
    public init() {
        super.init(name: "negative")
    }
}