Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Protocol
- Refactoring
- clean architecture
- swift documentation
- 리팩토링
- map
- RxCocoa
- 애니메이션
- 리펙토링
- combine
- ios
- Human interface guide
- 리펙터링
- rxswift
- SWIFT
- UICollectionView
- uitableview
- uiscrollview
- ribs
- MVVM
- Xcode
- Clean Code
- 클린 코드
- Observable
- 스위프트
- UITextView
- HIG
- collectionview
- swiftUI
- tableView
Archives
- Today
- Total
김종권의 iOS 앱 개발 알아가기
[iOS - swift] UIImage에서 alpha 정보 가져오는 방법 (alphaInfo, jpegData, pngData, 투명도) 본문
iOS 응용 (swift)
[iOS - swift] UIImage에서 alpha 정보 가져오는 방법 (alphaInfo, jpegData, pngData, 투명도)
jake-kim 2024. 2. 17. 15:06UIImage에서 Data로 변환에서의 주의사항
- UIImage를 서버로 올리거나 데이터 교환을 할 때 Data형태로 변환해야할때가 있는데 이 때 alpha값(투명도)이 제거되는 jpegData로 쓸 것인지, pngData로 쓸 것인지 판단이 필요
- (반대로 Data에서 UIImage로 변환할때는 Data의 bit를 확인하여 jpg인지 png인지 판단이 가능)
- 방안: UIImage를 Data로 변경할 때 alpha정보를 파악하여 jpegData를 사용할지 pngData를 사용할지 선택하여 사용
UIImage에서 alpha 정보 아는 방법 - alphaInfo
- alphaInfo란 CGImage의 프로퍼티인데 이 정보를 사용하면 alpha값이 있는지 유무 판단이 가능
- alphaInfo는 enum으로 구현된 것
public enum CGImageAlphaInfo : UInt32, @unchecked Sendable {
case none = 0 /* For example, RGB. */
case premultipliedLast = 1 /* For example, premultiplied RGBA */
case premultipliedFirst = 2 /* For example, premultiplied ARGB */
case last = 3 /* For example, non-premultiplied RGBA */
case first = 4 /* For example, non-premultiplied ARGB */
case noneSkipLast = 5 /* For example, RGBX. */
case noneSkipFirst = 6 /* For example, XRGB. */
case alphaOnly = 7 /* No color data, alpha data only */
}
- 여기서 non, nonSkipLast, noneSkipFirst중에 하나라면 alpha값이 없는 것
- 사용법)
let image = UIImage(named: "pngImage")
guard let alphaInfo = image?.cgImage?.alphaInfo else { return }
let hasAlpha = alphaInfo != .none &&
alphaInfo != .noneSkipFirst &&
alphaInfo != .noneSkipLast
- 이것을 UIImage extension으로 구현하면 편리하게 사용이 가능
extension UIImage {
var hasAlpha: Bool {
guard let alphaInfo = self.cgImage?.alphaInfo else { return false }
return alphaInfo != .none &&
alphaInfo != .noneSkipFirst &&
alphaInfo != .noneSkipLast
}
}
// 사용
pngImage?.hasAlpha
* 전체 코드: https://github.com/JK0369/ExAlphaInfo
* 참고
- https://stackoverflow.com/questions/65363335/how-to-check-if-uiimage-has-transparency
- https://developer.apple.com/documentation/coregraphics/cgimage/1455401-alphainfo
- https://developer.apple.com/documentation/uikit/uiimage/1624096-pngdata
- https://developer.apple.com/documentation/uikit/uiimage/1624115-jpegdata
'iOS 응용 (swift)' 카테고리의 다른 글
Comments