通過 CGImage 或 CIImage 旋轉特定角度
創(chuàng)新互聯(lián)建站主要從事成都網(wǎng)站設計、成都網(wǎng)站建設、網(wǎng)頁設計、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務。立足成都服務寶山,10年網(wǎng)站建設經(jīng)驗,價格優(yōu)惠、服務專業(yè),歡迎來電咨詢建站服務:028-86922220UIImage可通過CGImage或CIImage初始化,初始化方法分別為init(cgImage: CGImage, scale: CGFloat, orientation: UIImageOrientation)和init(ciImage: CIImage, scale: CGFloat, orientation: UIImageOrientation)
。通過UIImageOrientation的不同取值,可以使圖片旋轉90、180、270度。
用原圖繪制
通過原圖繪制實現(xiàn)旋轉圖片任意角度。可以先繪制紅色背景,效果如下
static func rotateImage(_ image: UIImage, withAngle angle: Double) -> UIImage? { if angle.truncatingRemainder(dividingBy: 360) == 0 { return image } let imageRect = CGRect(origin: .zero, size: image.size) let radian = CGFloat(angle / 180 * M_PI) let rotatedTransform = CGAffineTransform.identity.rotated(by: radian) var rotatedRect = imageRect.applying(rotatedTransform) rotatedRect.origin.x = 0 rotatedRect.origin.y = 0 UIGraphicsBeginImageContext(rotatedRect.size) guard let context = UIGraphicsGetCurrentContext() else { return nil } context.translateBy(x: rotatedRect.width / 2, y: rotatedRect.height / 2) context.rotate(by: radian) context.translateBy(x: -image.size.width / 2, y: -image.size.height / 2) image.draw(at: .zero) let rotatedImage = UIGraphicsGetImageFromCurrentImageContext() UIGraphicsEndImageContext() return rotatedImage }
另外有需要云服務器可以了解下創(chuàng)新互聯(lián)建站www.cdcxhl.com,海內(nèi)外云服務器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務器、裸金屬服務器、高防服務器、香港服務器、美國服務器、虛擬主機、免備案服務器”等云主機租用服務以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應用場景需求。