mirror of
				https://github.com/laosb/CropImage.git
				synced 2025-11-04 08:01:38 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			457 B
		
	
	
	
		
			Swift
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			457 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 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 it's `UIImage`.
 | 
						|
public typealias PlatformImage = UIImage
 | 
						|
#endif
 |