mirror of
https://github.com/laosb/CropImage.git
synced 2025-05-03 00:41:09 +00:00
22 lines
475 B
Swift
22 lines
475 B
Swift
//
|
|
// PlatformImage.swift
|
|
//
|
|
//
|
|
// Created by Shibo Lyu on 2023/7/21.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
#if os(macOS)
|
|
import AppKit
|
|
/// The image object type, aliased to each platform.
|
|
///
|
|
/// On macOS, it's `NSImage` and on iOS/visionOS it's `UIImage`.
|
|
public typealias PlatformImage = NSImage
|
|
#else
|
|
import UIKit
|
|
/// The image object type, aliased to each platform.
|
|
///
|
|
/// On macOS, it's `NSImage` and on iOS/visionOS it's `UIImage`.
|
|
public typealias PlatformImage = UIImage
|
|
#endif
|