KFImage를 이용하여 불러오는 이미지 다운샘플링

This commit is contained in:
Yu Sung
2024-10-11 18:16:24 +09:00
parent eba9e4dec2
commit 9a461f14ad
64 changed files with 527 additions and 0 deletions

View File

@@ -84,6 +84,13 @@ struct LiveRoomInfoEditDialog: View {
.cornerRadius(10)
} else if let coverImageUrl = coverImageUrl {
KFImage(URL(string: coverImageUrl))
.cancelOnDisappear(true)
.downsampling(
size: CGSize(
width: 80,
height: 116.8
)
)
.resizable()
.scaledToFill()
.frame(width: 80, height: 116.8, alignment: .top)

View File

@@ -28,6 +28,13 @@ struct LiveRoomNoChattingDialogView: View {
HStack(spacing: 8) {
KFImage(URL(string: profileUrl))
.cancelOnDisappear(true)
.downsampling(
size: CGSize(
width: 26.7,
height: 26.7
)
)
.resizable()
.frame(width: 26.7, height: 26.7)

View File

@@ -29,6 +29,13 @@ struct LiveRoomProfileDialog: View {
HStack(spacing: 13.3) {
KFImage(URL(string: profileInfo.profileImage))
.cancelOnDisappear(true)
.downsampling(
size: CGSize(
width: 80,
height: 116.7
)
)
.resizable()
.frame(width: 80, height: 116.7, alignment: .top)
.clipped()

View File

@@ -49,6 +49,13 @@ struct LiveRoomProfileItemMasterView: View {
VStack(alignment: .leading, spacing: 20) {
HStack(spacing: 0) {
KFImage(URL(string: profileUrl))
.cancelOnDisappear(true)
.downsampling(
size: CGSize(
width: 60,
height: 60
)
)
.resizable()
.frame(width: 60, height: 60)
.clipShape(Circle())
@@ -90,6 +97,13 @@ struct LiveRoomProfileItemUserView: View {
VStack(spacing: 10) {
HStack(spacing: 0) {
KFImage(URL(string: profileUrl))
.cancelOnDisappear(true)
.downsampling(
size: CGSize(
width: 46.7,
height: 46.7
)
)
.resizable()
.frame(width: 46.7, height: 46.7)
.clipShape(Circle())