-
Notifications
You must be signed in to change notification settings - Fork 82
Open
Description
print(UIImage(named: "tryPhoto")!.size)
print(UIImage(named: "tryPhoto")!.resize(toSize: CGSize(width: 200, height: 300))!.size)
print(UIImage(named: "tryPhoto")!.resize(toSize: CGSize(width: 300, height: 400), contentMode: UIImageContentMode.scaleAspectFill)!.size)
print(UIImage(named: "tryPhoto")!.resize(toSize: CGSize(width: 400, height: 500), contentMode: UIImageContentMode.scaleToFill)!.size)
print(UIImage(named: "tryPhoto")!.resize(toSize: CGSize(width: 500, height: 600), contentMode: UIImageContentMode.scaleAspectFit)!.size)
return
(750.0, 905.0)
(750.0, 905.0)
(750.0, 905.0)
(750.0, 905.0)
(750.0, 905.0)
Metadata
Metadata
Assignees
Labels
No labels