Compare commits

...

17 commits
0.6.0 ... main

Author SHA1 Message Date
Shibo Lyu
9a8b486f55
Create FUNDING.yml 2024-12-24 14:18:08 +08:00
Shibo Lyu
481f59cf41 fix: macos build
fixes #4
2024-12-20 14:58:23 +08:00
Shibo Lyu
7042102108 fix: build on non-macOS. 2024-12-18 16:49:24 +08:00
Shibo Lyu
a9672b8a33 feat: supports Swift 6 2024-12-18 16:11:02 +08:00
Shibo Lyu
54861801e6 chore: convert to preview macro 2024-12-18 16:06:40 +08:00
Shibo Lyu
6b33bcdbe4 fix(macos): remove monitor after use 2024-12-18 15:49:02 +08:00
infinitepower18
246b20d079 Disable spring animation for scroll zoom due to performance issue 2024-08-14 22:24:08 +01:00
infinitepower18
672ec51d3e only allow when hovered 2024-08-13 21:02:07 +01:00
Ahnaf Mahmud
ea5a5354fb
Allow zoom using scroll wheel 2024-08-13 20:30:21 +01:00
infinitepower18
304a4c8e7e Remove back compat code from visionOS 2024-03-28 15:25:13 +08:00
Ahnaf Mahmud
517fb0c003 Update Sources/CropImage/CropImageView.swift
Co-authored-by: Shibo Lyu <github@shibolyu.com>
2024-03-28 15:25:13 +08:00
infinitepower18
4e0f333e2f Don't use accent colour on visionOS 2024-03-28 15:25:13 +08:00
infinitepower18
57ff1a7b86 Adjust button style for visionOS 2024-03-28 15:25:13 +08:00
infinitepower18
a74e54dd00 update docs 2024-03-28 15:25:13 +08:00
infinitepower18
1d66f10bff add visionos support 2024-03-28 15:25:13 +08:00
Shibo Lyu
c296f3e6e5 fix: Circular cut hole. 2023-09-07 16:01:28 +08:00
Shibo Lyu
030ac8cbde fix: Pass isCircular to DefaultCutHoleShape. 2023-09-07 15:52:24 +08:00
10 changed files with 134 additions and 65 deletions

2
.github/FUNDING.yml vendored Normal file
View file

@ -0,0 +1,2 @@
github: [laosb]
buy_me_a_coffee: laosb

View file

@ -1,4 +1,4 @@
// swift-tools-version: 5.8 // swift-tools-version: 5.10
// The swift-tools-version declares the minimum version of Swift required to build this package. // The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription import PackageDescription
@ -7,7 +7,8 @@ let package = Package(
name: "CropImage", name: "CropImage",
platforms: [ platforms: [
.iOS(.v14), .iOS(.v14),
.macOS(.v13) .macOS(.v13),
.visionOS(.v1)
], ],
products: [ products: [
// Products define the executables and libraries a package produces, and make them visible to other packages. // Products define the executables and libraries a package produces, and make them visible to other packages.
@ -25,5 +26,6 @@ let package = Package(
.target( .target(
name: "CropImage", name: "CropImage",
dependencies: []) dependencies: [])
] ],
swiftLanguageVersions: [.version("6"), .v5]
) )

View file

@ -5,9 +5,9 @@
A simple SwiftUI view where user can move and resize an image to a pre-defined size. A simple SwiftUI view where user can move and resize an image to a pre-defined size.
Supports iOS 14.0 and above, or macOS Ventura 13.0 and above. Supports iOS 14.0 and above, visionOS 1.0 and above or macOS Ventura 13.0 and above.
- Supports both iOS and macOS - Supports iOS, visionOS and macOS
- Use `ImageRenderer` to render the cropped image, when possible - Use `ImageRenderer` to render the cropped image, when possible
- Very lightweight - Very lightweight
- (Optionally) bring your own crop UI - (Optionally) bring your own crop UI

View file

@ -6,7 +6,7 @@
// //
import SwiftUI import SwiftUI
#if os(iOS) #if !os(macOS)
import UIKit import UIKit
#endif #endif
@ -19,7 +19,7 @@ public struct CropImageView<Controls: View, CutHole: View>: View {
/// - scale: The scale binding of the image. /// - scale: The scale binding of the image.
/// - rotation: The rotation binding of the image. /// - rotation: The rotation binding of the image.
/// - crop: An async function to trigger crop action. Result will be delivered via ``onCrop``. /// - crop: An async function to trigger crop action. Result will be delivered via ``onCrop``.
public typealias ControlClosure<Controls> = ( public typealias ControlClosure = (
_ offset: Binding<CGSize>, _ offset: Binding<CGSize>,
_ scale: Binding<CGFloat>, _ scale: Binding<CGFloat>,
_ rotation: Binding<Angle>, _ rotation: Binding<Angle>,
@ -30,7 +30,7 @@ public struct CropImageView<Controls: View, CutHole: View>: View {
/// ///
/// - Parameters: /// - Parameters:
/// - targetSize: The size of the cut hole. /// - targetSize: The size of the cut hole.
public typealias CutHoleClosure<CutHole> = (_ targetSize: CGSize) -> CutHole public typealias CutHoleClosure = (_ targetSize: CGSize) -> CutHole
/// Errors that could happen during the cropping process. /// Errors that could happen during the cropping process.
public enum CropError: Error { public enum CropError: Error {
@ -66,8 +66,8 @@ public struct CropImageView<Controls: View, CutHole: View>: View {
/// ///
/// The error should be a ``CropError``. /// The error should be a ``CropError``.
public var onCrop: (Result<PlatformImage, Error>) -> Void public var onCrop: (Result<PlatformImage, Error>) -> Void
var controls: ControlClosure<Controls> var controls: ControlClosure
var cutHole: CutHoleClosure<CutHole> var cutHole: CutHoleClosure
/// Create a ``CropImageView`` with a custom controls view and a custom cut hole. /// Create a ``CropImageView`` with a custom controls view and a custom cut hole.
public init( public init(
image: PlatformImage, image: PlatformImage,
@ -75,8 +75,8 @@ public struct CropImageView<Controls: View, CutHole: View>: View {
targetScale: CGFloat = 1, targetScale: CGFloat = 1,
fulfillTargetFrame: Bool = true, fulfillTargetFrame: Bool = true,
onCrop: @escaping (Result<PlatformImage, Error>) -> Void, onCrop: @escaping (Result<PlatformImage, Error>) -> Void,
@ViewBuilder controls: @escaping ControlClosure<Controls>, @ViewBuilder controls: @escaping ControlClosure,
@ViewBuilder cutHole: @escaping CutHoleClosure<CutHole> @ViewBuilder cutHole: @escaping CutHoleClosure
) { ) {
self.image = image self.image = image
self.targetSize = targetSize self.targetSize = targetSize
@ -92,7 +92,7 @@ public struct CropImageView<Controls: View, CutHole: View>: View {
targetScale: CGFloat = 1, targetScale: CGFloat = 1,
fulfillTargetFrame: Bool = true, fulfillTargetFrame: Bool = true,
onCrop: @escaping (Result<PlatformImage, Error>) -> Void, onCrop: @escaping (Result<PlatformImage, Error>) -> Void,
@ViewBuilder controls: @escaping ControlClosure<Controls> @ViewBuilder controls: @escaping ControlClosure
) where CutHole == DefaultCutHoleView { ) where CutHole == DefaultCutHoleView {
self.image = image self.image = image
self.targetSize = targetSize self.targetSize = targetSize
@ -141,16 +141,16 @@ public struct CropImageView<Controls: View, CutHole: View>: View {
fulfillTargetFrame: fulfillTargetFrame fulfillTargetFrame: fulfillTargetFrame
) )
.frame(width: targetSize.width, height: targetSize.height) .frame(width: targetSize.width, height: targetSize.height)
if #available(iOS 16.0, macOS 13.0, *) { if #available(iOS 16.0, macOS 13.0, visionOS 1.0, *) {
let renderer = ImageRenderer(content: snapshotView) let renderer = ImageRenderer(content: snapshotView)
renderer.scale = targetScale renderer.scale = targetScale
#if os(iOS) #if !os(macOS)
if let image = renderer.uiImage { if let image = renderer.uiImage {
return image return image
} else { } else {
throw CropError.imageRendererReturnedNil throw CropError.imageRendererReturnedNil
} }
#elseif os(macOS) #else
if let image = renderer.nsImage { if let image = renderer.nsImage {
return image return image
} else { } else {
@ -225,7 +225,7 @@ public struct CropImageView<Controls: View, CutHole: View>: View {
} }
} }
struct CropImageView_Previews: PreviewProvider { #Preview {
struct PreviewView: View { struct PreviewView: View {
@State private var targetSize: CGSize = .init(width: 100, height: 100) @State private var targetSize: CGSize = .init(width: 100, height: 100)
@State private var result: Result<PlatformImage, Error>? = nil @State private var result: Result<PlatformImage, Error>? = nil
@ -233,7 +233,7 @@ struct CropImageView_Previews: PreviewProvider {
var body: some View { var body: some View {
VStack { VStack {
CropImageView( CropImageView(
image: .init(contentsOfFile: "/Users/laosb/Downloads/png.png")!, image: .previewImage,
targetSize: targetSize targetSize: targetSize
) { ) {
result = $0 result = $0
@ -250,7 +250,7 @@ struct CropImageView_Previews: PreviewProvider {
case let .success(croppedImage): case let .success(croppedImage):
#if os(macOS) #if os(macOS)
Image(nsImage: croppedImage) Image(nsImage: croppedImage)
#elseif os(iOS) #else
Image(uiImage: croppedImage) Image(uiImage: croppedImage)
#endif #endif
case let .failure(error): case let .failure(error):
@ -262,18 +262,16 @@ struct CropImageView_Previews: PreviewProvider {
} }
} header: { Text("Result") } } header: { Text("Result") }
} }
#if os(macOS) #if os(macOS)
.formStyle(.grouped) .formStyle(.grouped)
#endif #endif
} }
} }
} }
static var previews: some View { return PreviewView()
PreviewView() #if os(macOS)
#if os(macOS) .frame(width: 500)
.frame(width: 500) .frame(minHeight: 600)
.frame(minHeight: 600) #endif
#endif
}
} }

View file

@ -25,16 +25,22 @@ public struct DefaultControlsView: View {
} label: { } label: {
Label("Rotate", systemImage: "rotate.right") Label("Rotate", systemImage: "rotate.right")
.font(.title2) .font(.title2)
#if !os(visionOS)
.foregroundColor(.accentColor) .foregroundColor(.accentColor)
#endif
.labelStyle(.iconOnly) .labelStyle(.iconOnly)
.padding(.horizontal, 6) .padding(.horizontal, 6)
.padding(.vertical, 3) .padding(.vertical, 3)
#if !os(visionOS)
.background( .background(
RoundedRectangle(cornerRadius: 5, style: .continuous) RoundedRectangle(cornerRadius: 5, style: .continuous)
.fill(.background) .fill(.background)
) )
#endif
} }
#if !os(visionOS)
.buttonStyle(.plain) .buttonStyle(.plain)
#endif
.padding() .padding()
} }
@ -54,14 +60,20 @@ public struct DefaultControlsView: View {
} } label: { } } label: {
Label("Crop", systemImage: "checkmark.circle.fill") Label("Crop", systemImage: "checkmark.circle.fill")
.font(.title2) .font(.title2)
#if !os(visionOS)
.foregroundColor(.accentColor) .foregroundColor(.accentColor)
#endif
.labelStyle(.iconOnly) .labelStyle(.iconOnly)
.padding(1) .padding(1)
#if !os(visionOS)
.background( .background(
Circle().fill(.background) Circle().fill(.background)
) )
#endif
} }
#if !os(visionOS)
.buttonStyle(.plain) .buttonStyle(.plain)
#endif
.padding() .padding()
} }

View file

@ -44,20 +44,18 @@ struct DefaultCutHoleShape: Shape {
} }
} }
struct DefaultCutHoleShape_Previews: PreviewProvider { #Preview("Default") {
static var previews: some View { VStack {
VStack { DefaultCutHoleShape(size: .init(width: 100, height: 100))
DefaultCutHoleShape(size: .init(width: 100, height: 100)) .fill(style: FillStyle(eoFill: true))
.fill(style: FillStyle(eoFill: true)) .foregroundColor(.black.opacity(0.6))
.foregroundColor(.black.opacity(0.6))
}
.previewDisplayName("Default")
VStack {
DefaultCutHoleShape(size: .init(width: 100, height: 100), isCircular: true)
.fill(style: FillStyle(eoFill: true))
.foregroundColor(.black.opacity(0.6))
}
.previewDisplayName("Circular")
} }
} }
#Preview("Circular") {
VStack {
DefaultCutHoleShape(size: .init(width: 100, height: 100), isCircular: true)
.fill(style: FillStyle(eoFill: true))
.foregroundColor(.black.opacity(0.6))
}
}

View file

@ -28,14 +28,24 @@ public struct DefaultCutHoleView: View {
} }
var background: some View { var background: some View {
DefaultCutHoleShape(size: targetSize) DefaultCutHoleShape(size: targetSize, isCircular: isCircular)
.fill(style: FillStyle(eoFill: true)) .fill(style: FillStyle(eoFill: true))
.foregroundColor(maskColor) .foregroundColor(maskColor)
} }
@ViewBuilder
var strokeShape: some View {
if isCircular {
Circle()
.strokeBorder(style: .init(lineWidth: strokeWidth))
} else {
Rectangle()
.strokeBorder(style: .init(lineWidth: strokeWidth))
}
}
var stroke: some View { var stroke: some View {
Rectangle() strokeShape
.strokeBorder(style: .init(lineWidth: strokeWidth))
.frame( .frame(
width: targetSize.width + strokeWidth * 2, width: targetSize.width + strokeWidth * 2,
height: targetSize.height + strokeWidth * 2 height: targetSize.height + strokeWidth * 2
@ -51,8 +61,10 @@ public struct DefaultCutHoleView: View {
} }
} }
struct DefaultCutHoleView_Previews: PreviewProvider { #Preview("Default") {
static var previews: some View { DefaultCutHoleView(targetSize: .init(width: 100, height: 100))
DefaultCutHoleView(targetSize: .init(width: 100, height: 100)) }
}
#Preview("Circular") {
DefaultCutHoleView(targetSize: .init(width: 100, height: 100), isCircular: true)
} }

View file

@ -2,9 +2,9 @@
A simple SwiftUI view where user can move and resize an image to a pre-defined size. A simple SwiftUI view where user can move and resize an image to a pre-defined size.
Supports iOS 14.0 and above, or macOS Ventura 13.0 and above. Supports iOS 14.0 and above, visionOS 1.0 and above or macOS Ventura 13.0 and above.
- Supports both iOS and macOS - Supports iOS, visionOS and macOS
- Use `ImageRenderer` to render the cropped image, when possible - Use `ImageRenderer` to render the cropped image, when possible
- Very lightweight - Very lightweight
- (Optionally) bring your own crop UI - (Optionally) bring your own crop UI

View file

@ -11,12 +11,19 @@ import Foundation
import AppKit import AppKit
/// The image object type, aliased to each platform. /// The image object type, aliased to each platform.
/// ///
/// On macOS, it's `NSImage` and on iOS it's `UIImage`. /// On macOS, it's `NSImage` and on iOS/visionOS it's `UIImage`.
public typealias PlatformImage = NSImage public typealias PlatformImage = NSImage
#elseif os(iOS) extension PlatformImage {
@MainActor static let previewImage: PlatformImage = .init(contentsOf: URL(string: "file:///System/Library/Desktop%20Pictures/Hello%20Metallic%20Blue.heic")!)!
}
#else
import UIKit import UIKit
/// The image object type, aliased to each platform. /// The image object type, aliased to each platform.
/// ///
/// On macOS, it's `NSImage` and on iOS it's `UIImage`. /// On macOS, it's `NSImage` and on iOS/visionOS it's `UIImage`.
public typealias PlatformImage = UIImage public typealias PlatformImage = UIImage
extension PlatformImage {
// This doesn't really work, but at least passes build.
static let previewImage: PlatformImage = .init(contentsOfFile: "/System/Library/Desktop Pictures/Hello Metallic Blue.heic")!
}
#endif #endif

View file

@ -25,6 +25,11 @@ struct UnderlyingImageView: View {
@State private var tempOffset: CGSize = .zero @State private var tempOffset: CGSize = .zero
@State private var tempScale: CGFloat = 1 @State private var tempScale: CGFloat = 1
@State private var tempRotation: Angle = .zero @State private var tempRotation: Angle = .zero
@State private var scrolling: Bool = false
#if os(macOS)
@State private var hovering: Bool = false
@State private var scrollMonitor: Any?
#endif
// When rotated odd multiples of 90 degrees, we need to switch width and height of the image in calculations. // When rotated odd multiples of 90 degrees, we need to switch width and height of the image in calculations.
var isRotatedOddMultiplesOf90Deg: Bool { var isRotatedOddMultiplesOf90Deg: Bool {
@ -66,9 +71,15 @@ struct UnderlyingImageView: View {
clampedOffset.height = clampedOffset.height.clamped(to: yOffsetBounds(at: clampedScale)) clampedOffset.height = clampedOffset.height.clamped(to: yOffsetBounds(at: clampedScale))
if clampedScale != scale || clampedOffset != offset { if clampedScale != scale || clampedOffset != offset {
withAnimation(.interactiveSpring()) { if scrolling {
scale = clampedScale scale = clampedScale
offset = clampedOffset offset = clampedOffset
scrolling = false
} else {
withAnimation(.interactiveSpring()) {
scale = clampedScale
offset = clampedOffset
}
} }
} }
} }
@ -81,10 +92,28 @@ struct UnderlyingImageView: View {
scale = min(widthScale, heightScale) scale = min(widthScale, heightScale)
} }
#if os(macOS)
private func setupScrollMonitor() {
scrollMonitor = NSEvent.addLocalMonitorForEvents(matching: .scrollWheel) { event in
if hovering {
scrolling = true
scale = scale + event.scrollingDeltaY / 1000
}
return event
}
}
private func removeScrollMonitor() {
if let scrollMonitor {
NSEvent.removeMonitor(scrollMonitor)
}
}
#endif
var imageView: Image { var imageView: Image {
#if os(macOS) #if os(macOS)
Image(nsImage: image) Image(nsImage: image)
#elseif os(iOS) #else
Image(uiImage: image) Image(uiImage: image)
#endif #endif
} }
@ -94,6 +123,14 @@ struct UnderlyingImageView: View {
.gesture(dragGesture) .gesture(dragGesture)
.gesture(magnificationgesture) .gesture(magnificationgesture)
.gesture(rotationGesture) .gesture(rotationGesture)
#if os(macOS)
.onAppear {
setupScrollMonitor()
}
.onDisappear {
removeScrollMonitor()
}
#endif
} }
var dragGesture: some Gesture { var dragGesture: some Gesture {
@ -148,10 +185,13 @@ struct UnderlyingImageView: View {
.onChange(of: rotation) { _ in .onChange(of: rotation) { _ in
adjustToFulfillTargetFrame() adjustToFulfillTargetFrame()
} }
#if os(macOS)
.onHover { hovering = $0 }
#endif
} }
} }
struct MoveAndScalableImageView_Previews: PreviewProvider { #Preview {
struct PreviewView: View { struct PreviewView: View {
@State private var offset: CGSize = .zero @State private var offset: CGSize = .zero
@State private var scale: CGFloat = 1 @State private var scale: CGFloat = 1
@ -162,7 +202,7 @@ struct MoveAndScalableImageView_Previews: PreviewProvider {
offset: $offset, offset: $offset,
scale: $scale, scale: $scale,
rotation: $rotation, rotation: $rotation,
image: .init(contentsOfFile: "/Users/laosb/Downloads/png.png")!, image: .previewImage,
viewSize: .init(width: 200, height: 100), viewSize: .init(width: 200, height: 100),
targetSize: .init(width: 100, height: 100), targetSize: .init(width: 100, height: 100),
fulfillTargetFrame: true fulfillTargetFrame: true
@ -171,7 +211,5 @@ struct MoveAndScalableImageView_Previews: PreviewProvider {
} }
} }
static var previews: some View { return PreviewView()
PreviewView()
}
} }