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

@@ -49,6 +49,13 @@ struct LiveRoomChatItemView: View {
}
KFImage(URL(string: chatMessage.profileUrl))
.cancelOnDisappear(true)
.downsampling(
size: CGSize(
width: 30,
height: 30
)
)
.resizable()
.scaledToFill()
.frame(width: 30, height: 30, alignment: .top)

View File

@@ -16,6 +16,13 @@ struct LiveRoomDonationChatItemView: View {
HStack(spacing: 13.3) {
ZStack(alignment: .bottomTrailing) {
KFImage(URL(string: chatMessage.profileUrl))
.cancelOnDisappear(true)
.downsampling(
size: CGSize(
width: 33.3,
height: 33.3
)
)
.resizable()
.scaledToFill()
.frame(width: 33.3, height: 33.3, alignment: .top)

View File

@@ -16,6 +16,13 @@ struct LiveRoomRouletteDonationChatItemView: View {
HStack(spacing: 13.3) {
ZStack(alignment: .bottomTrailing) {
KFImage(URL(string: chatMessage.profileUrl))
.cancelOnDisappear(true)
.downsampling(
size: CGSize(
width: 33.3,
height: 33.3
)
)
.resizable()
.scaledToFill()
.frame(width: 33.3, height: 33.3, alignment: .top)

View File

@@ -85,6 +85,13 @@ struct LiveRoomCreateView: View {
.cornerRadius(10)
} else if let coverImageUrl = viewModel.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

@@ -56,6 +56,13 @@ struct LiveRoomCreateTagView: View {
VStack(spacing: 16.7) {
ZStack {
KFImage(URL(string: tag.image))
.cancelOnDisappear(true)
.downsampling(
size: CGSize(
width: 60,
height: 60
)
)
.resizable()
.scaledToFill()
.frame(width: 60, height: 60, alignment: .top)

View File

@@ -138,6 +138,13 @@ struct LiveDetailView: View {
let manager = room.manager
KFImage(URL(string: manager.profileImageUrl))
.cancelOnDisappear(true)
.downsampling(
size: CGSize(
width: 60,
height: 60
)
)
.resizable()
.scaledToFill()
.frame(width: 60, height: 60, alignment: .top)
@@ -427,6 +434,13 @@ struct LiveDetailView: View {
ForEach(room.participatingUsers, id: \.self) { user in
VStack(spacing: 6.7) {
KFImage(URL(string: user.profileImageUrl))
.cancelOnDisappear(true)
.downsampling(
size: CGSize(
width: 46.7,
height: 46.7
)
)
.resizable()
.scaledToFill()
.frame(width: 46.7, height: 46.7, alignment: .top)
@@ -447,6 +461,13 @@ struct LiveDetailView: View {
ForEach(0..<userCount, id: \.self) { index in
let user = room.participatingUsers[index]
KFImage(URL(string: user.profileImageUrl))
.cancelOnDisappear(true)
.downsampling(
size: CGSize(
width: 33.3,
height: 33.3
)
)
.resizable()
.scaledToFill()
.frame(width: 33.3, height: 33.3, alignment: .top)

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())

View File

@@ -21,6 +21,13 @@ struct LiveRoomTopCreatorView: View {
var body: some View {
HStack(spacing: 5.3) {
KFImage(URL(string: profileImageUrl))
.cancelOnDisappear(true)
.downsampling(
size: CGSize(
width: 33.3,
height: 33.3
)
)
.resizable()
.scaledToFill()
.frame(width: 33.3, height: 33.3)

View File

@@ -27,6 +27,13 @@ struct LiveRoomInfoCreatorView: View {
HStack(spacing: 5.3) {
ZStack(alignment: .center) {
KFImage(URL(string: creatorProfileUrl))
.cancelOnDisappear(true)
.downsampling(
size: CGSize(
width: 33.3,
height: 33.3
)
)
.resizable()
.frame(width: 33.3, height: 33.3)
.clipShape(Circle())

View File

@@ -22,6 +22,13 @@ struct LiveRoomInfoSpeakerView: View {
VStack(spacing: 5) {
ZStack(alignment: .center) {
KFImage(URL(string: profileUrl))
.cancelOnDisappear(true)
.downsampling(
size: CGSize(
width: 25,
height: 25
)
)
.resizable()
.frame(width: 25, height: 25)
.clipShape(Circle())