An issue where black lines appear on image borders in iOS 16.
프로그래밍 이야기/아이폰 개발을 공부하며 2022. 11. 8. 08:09반응형
I found it a few months ago.
Some of the image content on the service I manage.
Attributes for images with issues.
- image color space : Gray
- color profile : General gray gamma 2.2 profile
- image size : When width or height is divided by 2 and the remainder is 1.
=> ex
a. width : 1000 / height : 800 --> correct
b. width : 1001 / height : 800 --> Found issue. ( black line is showing right edge in image )
c. width : 1000 / height : 803 --> Found issue. ( black line is showing bottom edge in image )
d. width : 1001 / height : 803 --> Found issue. ( black line are showing bottom and right edge in inage )
for example image
i'm not found same issue in iOS 15.7(iPhone or iPad) and iOS 16(Simulator).
반응형