我在Assets.xcassets中拥有很大的形象。如何使用SwiftUI调整图片大小以缩小图片?
我试图设置框架,但不起作用:
Image(room.thumbnailImage)
.frame(width: 32.0, height: 32.0)
Answers:
您应.resizable()
先对进行大小修改,然后再使用Image
。
Image(room.thumbnailImage)
.resizable()
.frame(width: 32.0, height: 32.0)
aspectRatio(_:contentMode:)
Image("name").resizable().scaledToFit()
但是,没有被窃听。因此,您可以将图像包装在视图中,将视图的框架调整为所需的大小,然后scaledToFit()
在保持宽高比的同时使图像尽可能大。
这个怎么样:
struct ResizedImage: View {
var body: some View {
Image("myImage")
.resizable()
.scaledToFit()
.frame(width: 200.0,height:200)
}
}
图像视图为200x200,但图像保持原始宽高比(在该帧内缩放)
Image(uiImage: image!).resizable().aspectRatio(image!.size, contentMode: .fill)
其中image
type为type,UIImage
因为Image
type不公开任何size属性。
扩展@rraphael的答案和评论:
从Xcode 11 beta 2开始,您可以将图像缩放到任意尺寸,同时通过将图像包装在另一个元素中来保持原始宽高比。
例如
struct FittedImage: View
{
let imageName: String
let width: CGFloat
let height: CGFloat
var body: some View {
VStack {
Image(systemName: imageName)
.resizable()
.aspectRatio(1, contentMode: .fit)
}
.frame(width: width, height: height)
}
}
struct FittedImagesView: View
{
private let _name = "checkmark"
var body: some View {
VStack {
FittedImage(imageName: _name, width: 50, height: 50)
.background(Color.yellow)
FittedImage(imageName: _name, width: 100, height: 50)
.background(Color.yellow)
FittedImage(imageName: _name, width: 50, height: 100)
.background(Color.yellow)
FittedImage(imageName: _name, width: 100, height: 100)
.background(Color.yellow)
}
}
}
结果
(由于某种原因,图像显示有点模糊。请确保实际输出清晰。)
.aspectRatio(1, ...
。并不是说到目前为止任何其他解决方案都对我
好吧,在SwiftUI中似乎很容易/按照他们给出的演示进行操作:https : //developer.apple.com/videos/play/wwdc2019/204
struct RoomDetail: View {
let room: Room
var body: some View {
Image(room.imageName)
.resizable()
.aspectRatio(contentMode: .fit)
}
希望能帮助到你。
注意:我的图像名称是
img_Logo
,您可以更改图像名称,以定义图像属性:
VStack(alignment: .leading, spacing: 1) {
//Image Logo Start
Image("img_Logo")
.resizable()
.padding(.all, 10.0)
.frame(width: UIScreen.main.bounds.width * 0.4, height: UIScreen.main.bounds.height * 0.2)
//Image Logo Done
}
由于我们不应该硬编码/固定图像大小。这是提供更好的范围以根据不同设备上的屏幕分辨率进行调整的更好方法。
Image("ImageName Here")
.resizable()
.frame(minWidth: 60.0, idealWidth: 75.0, maxWidth: 95.0, minHeight: 80.0, idealHeight: 95.0, maxHeight: 110.0, alignment: .center)
.scaledToFit()
.clipShape(Capsule())
.shadow(color: Color.black.opacity(5.0), radius: 5, x: 5, y: 5)
如果要在swiftUI中调整图像大小,请使用以下代码:
import SwiftUI
struct ImageViewer : View{
var body : some View {
Image("Ssss")
.resizable()
.frame(width:50,height:50)
}
}
但是这里有问题。如果将此图像添加到按钮内,则不会显示该图像,仅会出现蓝色块。要解决此问题,只需执行以下操作:
import SwiftUI
struct ImageViewer : View{
var body : some View {
Button(action:{}){
Image("Ssss")
.renderingMode(.original)
.resizable()
.frame(width:50,height:50)
}
}
}
理解代码的逻辑结构非常重要。像在SwiftUI中一样,图片默认情况下无法调整大小。因此,要调整任何图像的大小,必须在声明“图像”视图后立即应用.resizable()修饰符使其可调整大小。
Image("An Image file name")
.resizable()