본문 바로가기
iOS

[iOS] 코드로 이미지 크기 변경

by 정석 지향 2021. 8. 16.
반응형

디자인 이미지를 받았을 때, 크기가 맞지 않은 경우가 있습니다.

이미지 자체 크기를 변경할 수 있지만, 코드에서 크기를 조절하여 빠르고 쉽게 이미지 확인이 가능합니다.

 

let customImage = UIImage(named: "customImage")
let newWidth = 30
let newHeight = 30
let newImageRect = CGRect(x: 0, y: 0, width: newWidth, height: newHeight)
UIGraphicsBeginImageContext(CGSize(width: newWidth, height: newHeight))
customImage?.draw(in: newImageRect)
let newImage = UIGraphicsGetImageFromCurrentImageContext()?.withRenderingMode(.alwaysOriginal)
UIGraphicsEndImageContext()

 

반응형

'iOS' 카테고리의 다른 글

[iOS] window 객체 찾기  (0) 2021.08.16
[iOS] 상태바 높이 구하기  (0) 2021.08.16
[iOS] 객체 가림 확인하기  (0) 2021.05.20
[iOS] 뷰 구조에서 최초 응답 객체 찾기  (0) 2021.05.20
스토리보드 분할 및 화면이동  (0) 2021.03.04