Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个应用程序,它用 ipad 相机拍照并将其保存在 sql 数据库中。
有没有我可以拍一张低分辨率的照片,或者我可以在将图片保存到数据库之前降低图片分辨率的方法。
谢谢
您可以使用UIImageJPEGRepresentation来降低质量。JPEG 也比 PNG 小得多,如果这是您当前保存的格式。
UIImageJPEGRepresentation
NSData *jpegData = UIImageJPEGRepresentation(image, .8);