gpt4 book ai didi

ios - IOS 中的图像、照片质量

转载 作者:行者123 更新时间:2023-11-28 09:03:28 25 4
gpt4 key购买 nike

我正在构建小型图像共享应用程序,它只需在图像上添加文本并可以保存到 IOS 中的相册中。当我实现它时,只需使用屏幕截图并将其裁剪并保存到画廊。它降低了质量。但是当我在 Appstore 中搜索其他应用程序时,情况并非如此。编辑并保存到画廊后,静止图像质量上乘。例如 instagram 和其他照片编辑应用程序。

我在 stackoverflow 和其他网站上到处搜索,我得到了相同的屏幕截图概念。

UIGraphicsBeginImageContextWithOptions(imageView.bounds.size,true,2.0)
self.view.drawViewHierarchyInRect(self.view.bounds,
afterScreenUpdates: true)

newImage =
UIGraphicsGetImageFromCurrentImageContext()
UIGraphicsEndImageContext()

如何做出质量好的?

最佳答案

使用这行代码,您将放大图像,从而降低质量。

UIGraphicsBeginImageContextWithOptions(imageView.bounds.size,true,2.0)

试试这个:

UIGraphicsBeginImageContextWithOptions(imageView.bounds.size,true,1.0)

这将确保图像具有相同的比例,这意味着它不会降低质量。

关于ios - IOS 中的图像、照片质量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31469198/

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