gpt4 book ai didi

iOS:Swift:如何使用 CGImageCreateWithImageInRect 获得适当的图像质量?

转载 作者:行者123 更新时间:2023-11-30 13:48:57 24 4
gpt4 key购买 nike

我正在尝试使用 Swift 制作一个简单的裁剪功能。我正在尝试使用 CGImageCreateWithImageInRect 函数 - 它工作完美,但质量较差。我错过了什么吗?

 func retriveCroppedImage(){
let yratio: CGFloat = imgviewrect.size.height / chosenImage.size.height
let xratio: CGFloat = imgviewrect.size.width / chosenImage.size.width

var cliprect = CGRectMake(centerpoint.x - vWidth/2, centerpoint.y - vHeight/2, vWidth, vHeight)
print("cliprect top \(cliprect.size)")
cliprect.size.height = cliprect.size.height / xratio;
cliprect.size.width = cliprect.size.width / xratio;
cliprect.origin.x = cliprect.origin.x / xratio + imgviewrect.origin.x / xratio
cliprect.origin.y = cliprect.origin.y / yratio - imgviewrect.origin.y / xratio

print("cliprect On Image \(cliprect)")

let imageRef = CGImageCreateWithImageInRect(chosenImage.CGImage, cliprect )

croppedImg = UIImage(CGImage: imageRef!, scale: UIScreen.mainScreen().scale, orientation: chosenImage.imageOrientation)
print("Operation complete");
}

屏幕截图:Main VC

裁剪后我得到 Cropped Image

最佳答案

在尝试了所有选项之后 - 我意外地发现我在 Storyboard上的 ImageView 中设置了 Alpha。 CGImageCreateWithImageInRect 函数没有任何问题。现在我的裁剪应用程序可以按预期工作。但谢谢大家的建议。

关于iOS:Swift:如何使用 CGImageCreateWithImageInRect 获得适当的图像质量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34570318/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com