【问题标题】:How to use call this function in swift如何在swift中使用调用这个函数
【发布时间】:2018-08-26 15:28:23
【问题描述】:

我是 swift 新手,所以我想尝试使用此扩展程序来裁剪图像,但我不知道如何调用它 我已经尝试使用此代码调用它,但我收到了未使用的通知 如果我使用 uiimageview 设置宽度和高度,这可能吗? 感谢所有的答案真的很感激它

let size = CGSize(width: 500, height: 500)
            previewKTPImage.image?.crop(to: size)


import UIKit
extension UIImage {
    func crop(to:CGSize) -> UIImage {
        guard let cgimage = self.cgImage else { return self }

        let contextImage: UIImage = UIImage(cgImage: cgimage)

        let contextSize: CGSize = contextImage.size

        //Set to square
        var posX: CGFloat = 0.0
        var posY: CGFloat = 0.0
        let cropAspect: CGFloat = to.width / to.height

        var cropWidth: CGFloat = to.width
        var cropHeight: CGFloat = to.height

        if to.width > to.height { //Landscape
            cropWidth = contextSize.width
            cropHeight = contextSize.width / cropAspect
            posY = (contextSize.height - cropHeight) / 2
        } else if to.width < to.height { //Portrait
            cropHeight = contextSize.height
            cropWidth = contextSize.height * cropAspect
            posX = (contextSize.width - cropWidth) / 2
        } else { //Square
            if contextSize.width >= contextSize.height { //Square on landscape (or square)
                cropHeight = contextSize.height
                cropWidth = contextSize.height * cropAspect
                posX = (contextSize.width - cropWidth) / 2
            }else{ //Square on portrait
                cropWidth = contextSize.width
                cropHeight = contextSize.width / cropAspect
                posY = (contextSize.height - cropHeight) / 2
            }
        }

        let rect: CGRect = CGRect(x : posX, y : posY, width : cropWidth, height : cropHeight)

        // Create bitmap image from context using the rect
        let imageRef: CGImage = contextImage.cgImage!.cropping(to: rect)!

        // Create a new image based on the imageRef and rotate back to the original orientation
        let cropped: UIImage = UIImage(cgImage: imageRef, scale: self.scale, orientation: self.imageOrientation)

        cropped.draw(in: CGRect(x : 0, y : 0, width : to.width, height : to.height))

        return cropped
    }
}

【问题讨论】:

    标签: ios swift uiimageview uiimage crop


    【解决方案1】:

    你需要持有返回值

    let result = previewKTPImage.image?.crop(to:CGSize(width: 500, height: 500))
    previewKTPImage.image = result // note this will stretch it also so
    

    根据需要配置contentMode

    previewKTPImage.contentMode = .scaleAspectFit 
    

    【讨论】:

    • 这是因为您创建了一个新的裁剪图像,但您没有将其更新为旧图像。所以捕获result中的newImage并更新它
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2022-01-25
    • 1970-01-01
    • 2016-06-25
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多