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
- 애니메이션
- UITextView
- UICollectionView
- clean architecture
- combine
- ios
- 리펙터링
- MVVM
- HIG
- Protocol
- map
- uiscrollview
- RxCocoa
- 클린 코드
- 리펙토링
- 스위프트
- Refactoring
- SWIFT
- ribs
- uitableview
- collectionview
- Observable
- tableView
- Human interface guide
- Xcode
- rxswift
- 리팩토링
- swiftUI
- Clean Code
- swift documentation
Archives
- Today
- Total
김종권의 iOS 앱 개발 알아가기
[iOS - swift] 2. 이미지 리사이징 - ImageSource와 이미지 회전 처리 (CGImageSourceCreateThumbnailAtIndex) 본문
iOS 응용 (swift)
[iOS - swift] 2. 이미지 리사이징 - ImageSource와 이미지 회전 처리 (CGImageSourceCreateThumbnailAtIndex)
jake-kim 2023. 11. 22. 01:272. 이미지 리사이징 - ImageIO, ImageSource를 활용한 이미지 리사이징 구현 (CGImageSourceCreateThumbnailAtIndex)
3. 이미지 리사이징 - CGImageSourceCreateThumbnailAtIndex와 이미지 회전 처리 옵션 (#CGDictionary)
지난내용) ImageSource를 이용한 이미지 리사이징
- ImageSource 개념
- ImageSource는 ImageIO모듈에 있고 file에서부터 I/O를 시도하고, ImageSource 이 이미지 스트림을 통해 이미지를 read하거나 write하는 방식
- 주로 이미지 파일 형식 간 변환 및 메타데이터 작업에 사용
- 기존 방법인 UIGraphicsImageRenderer를 사용한 이미지 리사이징보다 ImageSource를 사용하면 메모리 사용이 75%줄어들고 50% 성능 향상이 존재
- ImageSource와 CGImageSourceCreateThumbnailAtIndex를 사용하여 손쉽게 리사이징이 가능
CGImageSource를 사용한 이미지 리사이징
- UIGraphic방식을 통한 이미지 리사이징은 이미지 픽셀을 그대로 캡쳐떠서 리사이징하는 반면에 CGImageSource는 파일 그대로 읽어와서 처리하는 방식
- 때문에 Data형태를 가지고 CGIMageSourceCreateWithData 함수를 사용하여 imageSource 인스턴스 획득이 가능
let imageSource = CGImageSourceCreateWithData(data as CFData, nil)
- 이 이미지를 가지고 CGImageSourceCreateThumbnailAtINdex 함수에 넣어서 다운 샘플링을 시도
let imageSource = CGImageSourceCreateWithData(data as CFData, nil),
let cgImage = CGImageSourceCreateThumbnailAtIndex(imageSource, 0, /*TODO*/)
- 여기에 3번째 인수인 CGDictionary에 특정 옵션을 주어서, 원본 이미지에서 alpha값을 유지할 것인가, 썸네일 캐싱을 할 것인지 등의 옵션 추가가 가능
- 이를 UIImage 확장을 통해 아래처럼 사용이 가능
extension UIImage {
guard
let data = jpegData(compressionQuality: 1.0),
let imageSource = CGImageSourceCreateWithData(data as CFData, nil),
let cgImage = CGImageSourceCreateThumbnailAtIndex(imageSource, 0, let cgImage = CGImageSourceCreateThumbnailAtIndex(imageSource, 0, [CFString: Any]() as CFDictionary))
else { return nil }
let resizedImage = UIImage(cgImage: cgImage)
return resizedImage
}
}
CGDictionary 관련 옵션은 다음 포스팅 글에서 계속...)
* 전체 코드: https://github.com/JK0369/ExImageResizing
* 참고
- https://developer.apple.com/documentation/imageio/1465099-cgimagesourcecreatethumbnailatin
'iOS 응용 (swift)' 카테고리의 다른 글
Comments