mirror of
https://github.com/HaishinKit/HaishinKit.swift.git
synced 2026-05-07 20:12:28 +00:00
9 lines
141 B
Swift
9 lines
141 B
Swift
import CoreGraphics
|
|
import Foundation
|
|
|
|
extension CGImage {
|
|
var size: CGSize {
|
|
return .init(width: width, height: height)
|
|
}
|
|
}
|