blob: bb6164c628e3cf9e59ec54fba62f4a405e45f2d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
import SwiftUI
/// `SwiftyCropView` is a SwiftUI view for cropping images.
///
/// You can customize the cropping behavior using a `SwiftyCropConfiguration` instance and a completion handler.
///
/// - Parameters:
/// - imageToCrop: The image to be cropped.
/// - maskShape: The shape of the mask used for cropping.
/// - configuration: The configuration for the cropping behavior. If nothing is specified, the default is used.
/// - onComplete: A closure that's called when the cropping is complete. This closure returns the cropped `UIImage?`.
/// If an error occurs the return value is nil.
public struct SwiftyCropView: View {
private let maskShape: MaskShape
private let configuration: SwiftyCropConfiguration
#if canImport(UIKit)
private let imageToCrop: UIImage
private let onComplete: (UIImage?) -> Void
#elseif canImport(AppKit)
private let imageToCrop: NSImage
private let onComplete: (NSImage?) -> Void
#endif
#if canImport(UIKit)
public init(
imageToCrop: UIImage,
maskShape: MaskShape,
configuration: SwiftyCropConfiguration = SwiftyCropConfiguration(),
onComplete: @escaping (UIImage?) -> Void
) {
self.imageToCrop = imageToCrop
self.maskShape = maskShape
self.configuration = configuration
self.onComplete = onComplete
}
#elseif canImport(AppKit)
public init(
imageToCrop: NSImage,
maskShape: MaskShape,
configuration: SwiftyCropConfiguration = SwiftyCropConfiguration(),
onComplete: @escaping (NSImage?) -> Void
) {
self.imageToCrop = imageToCrop
self.maskShape = maskShape
self.configuration = configuration
self.onComplete = onComplete
}
#endif
public var body: some View {
CropView(
image: imageToCrop,
maskShape: maskShape,
configuration: configuration,
onComplete: onComplete
)
}
}
|