高仿QQ討論組多圖像效果

最近UI出了一個(gè)效果圖腿时, 多人圖像展示效果和qq討論組一樣您炉, 循環(huán)且部分重疊的效果。在網(wǎng)上搜了一下友扰,其效果都不理想彤叉, 就自己寫了一個(gè)。

效果圖:


屏幕快照 2018-04-11 11.05.28.png

思路如下:

圖片的邊緣裁剪一個(gè)弧形村怪, 然后旋轉(zhuǎn)相應(yīng)角度秽浇,算出每個(gè)圖標(biāo)的位置, 最后將得到的多個(gè)圖像繪制在一起甚负,得到一張圖像柬焕。

代碼也很簡(jiǎn)單审残, 直接上代碼吧!

import Foundation
import UIKit

struct YQ {
    
}

extension YQ {
    struct CircleImage {
        let maxCount = 4
        var images: [UIImage]?
        var size: CGFloat?
        var boardWidth: CGFloat = 3
        var boardColor: UIColor = UIColor.white
        var crossWidth: CGFloat = 20
        var direction: Direction = .clockwise
        
        init(images aImages: [UIImage]?, aSize: CGFloat?) {
            images = aImages
            size = aSize
        }
        
        private func subImageRect(at index: Int) -> CGRect? {
            guard let size = size else {
                return nil
            }
            
            let count = min(images?.count ?? 0, maxCount)
            guard count > 0 else {
                return nil
            }
            
            guard index >= 0 && index < count else {
                return nil
            }
            
            if count == 1 {
                return CGRect.init(origin: CGPoint.zero, size: CGSize.init(width: size, height: size))
            } else if count == 2 {
                let subSize = size / 2 + crossWidth / 2
                let y = (size - subSize) / 2
                switch index {
                case 0:
                    return CGRect.init(origin: CGPoint.init(x: 0, y: y), size: CGSize.init(width: subSize, height: subSize))
                case 1:
                    let x = (size - crossWidth) / 2
                    return CGRect.init(origin: CGPoint.init(x: x, y: y), size: CGSize.init(width: subSize, height: subSize))
                default:
                    break
                }
            }else if count == 3 {
                let subSize = (2 * CGFloat(sqrtf(3)) - 3) * size + (1 / (2 + CGFloat(sqrtf(3)))) * crossWidth * 2
                var original = CGPoint.zero
                switch index {
                case 0:
                    original = CGPoint.init(x: (size - subSize) / 2, y: 0)
                case 1:
                    original = CGPoint.init(x: (CGFloat(sqrtf(3)) + 2) / 4 * size - (2 + CGFloat(sqrtf(3))) / 2 * subSize / 2, y: 0.75 * size - 1.5 * subSize / 2)
                case 2:
                    original = CGPoint.init(x:(2 - CGFloat(sqrtf(3))) / 4 * size + (CGFloat(sqrtf(3)) - 2) / 2 * subSize / 2 , y: 0.75 * size - 1.5 * subSize / 2)
                default:
                    return nil
                }
                return CGRect.init(origin: original, size: CGSize.init(width: subSize, height: subSize))
            }else if count == 4 {
                let subSize = size / 2 + crossWidth / 2
                let behindO = (size - crossWidth) / 2
                switch index {
                case 0:
                    return CGRect.init(x: 0, y: 0, width: subSize, height: subSize)
                case 1:
                    return CGRect.init(x: behindO, y: 0, width: subSize, height: subSize)
                case 2:
                    return CGRect.init(x: behindO, y: behindO, width: subSize, height: subSize)
                case 3:
                    return CGRect.init(x: 0, y: behindO, width: subSize, height: subSize)
                default:
                    break
                }
            }
            return nil
        }
        
        private func subImageAngleClockwise(at index: Int) -> SubAngle?{
            guard let rect = subImageRect(at: index) else {
                return nil
            }
            
            let angle = acos(1 - crossWidth / rect.width)
            let start = -angle
            let end = angle
            
            let count = min(images!.count, maxCount)
            if count == 1 {
                return SubAngle.init(start: 0, end: CGFloat.pi * 2, rotate: 0)
            } else if count == 2 {
                switch index {
                case 0:
                    return SubAngle.init(start: 0, end: CGFloat.pi * 2, rotate: 0)
                case 1:
                    return SubAngle.init(start: start, end: end, rotate: CGFloat.pi)
                default:
                    break
                }
            } else if count == 3 {
                var rote: CGFloat = 0
                switch index {
                case 0:
                    rote = -CGFloat.pi * 2 / 3
                case 1:
                    rote = CGFloat.pi * 2 / 3
                case 2:
                    rote = 0
                default:
                    return nil
                }
                return SubAngle.init(start: start, end: end, rotate: rote)
            } else if count == 4 {
                var rote: CGFloat = 0
                switch index {
                case 0:
                    rote = -CGFloat.pi / 2
                case 1:
                    rote = CGFloat.pi
                case 2:
                    rote = CGFloat.pi / 2
                case 3:
                    rote = 0
                default:
                    return nil
                }
                return SubAngle.init(start: start, end: end, rotate: rote)
            }
            return nil
        }
        
        
        private func subImageAngleClockwise(at index: Int, direction: Direction) -> SubAngle? {
            if direction == .clockwise {
                return subImageAngleClockwise(at: index)
            }
            
            // 暫時(shí)只支持順時(shí)針
            return nil
        }
        
        fileprivate func subImage(at index: Int) -> UIImage? {
            guard let rect = subImageRect(at: index) else {
                return nil
            }
            
            guard let angle = subImageAngleClockwise(at: index, direction: direction) else {
                return nil
            }
            
            let size = rect.height
            let radius = size / 2
            
            UIGraphicsBeginImageContextWithOptions(rect.size, false, 1)
            let context = UIGraphicsGetCurrentContext()
            
            context?.saveGState()
            context?.translateBy(x: radius, y: radius)
            context?.rotate(by: -angle.rotate)
            
            context?.addArc(center: CGPoint.init(x: 0, y: 0), radius: radius, startAngle: angle.start, endAngle: angle.end, clockwise: true)
            if angle.start != 0 {
                context?.addArc(center: CGPoint.init(x: size * 2 - crossWidth - radius * 2, y: 0), radius: radius, startAngle: angle.start + CGFloat.pi, endAngle: angle.end + CGFloat.pi, clockwise: false)
            }
            context?.clip()
            
            context?.rotate(by: angle.rotate)
            let image = images![index]
            image.draw(in: CGRect.init(origin: CGPoint.init(x: -radius, y: -radius), size: rect.size))
            
            context?.rotate(by: -angle.rotate)
            context?.addArc(center: CGPoint.init(x: 0, y: 0), radius: radius - boardWidth / 2, startAngle: angle.start, endAngle: angle.end, clockwise: true)
            if angle.start != 0 {
                context?.addArc(center: CGPoint.init(x: size * 2 - crossWidth - radius * 2, y: 0), radius: radius - boardWidth / 2, startAngle: angle.start + CGFloat.pi, endAngle: angle.end + CGFloat.pi, clockwise: false)
            }
            
            context?.setStrokeColor(boardColor.cgColor)
            context?.setLineWidth(boardWidth)
            context?.strokePath()
            
            context?.restoreGState()
            
            let resultImage = UIGraphicsGetImageFromCurrentImageContext()
            UIGraphicsEndImageContext()
            
            return resultImage
        }
        
        var circleImage: UIImage?{
            guard let images = images, !images.isEmpty else {
                return nil
            }
            
            guard let size = size, size != 0 else {
                return nil
            }
            
            UIGraphicsBeginImageContextWithOptions(CGSize.init(width: size, height: size), false, 1)
            for index in 0...min(maxCount, images.count) {
                let image = subImage(at: index)
                image?.draw(in: subImageRect(at: index)!)
            }
            let resultImage = UIGraphicsGetImageFromCurrentImageContext()
            UIGraphicsEndImageContext()
            
            return resultImage
        }
        
    }
}

extension YQ.CircleImage {
    enum Direction {
        case clockwise      // 順時(shí)針
        case anticlockwise  // 逆時(shí)針
    }
    
    private struct SubAngle {
        var start: CGFloat = 0
        var end: CGFloat = 0
        var rotate: CGFloat = 0
    }
}

使用:

import UIKit

class ViewController: UIViewController {

    override func viewDidLoad() {
        super.viewDidLoad()
        // Do any additional setup after loading the view, typically from a nib.
        
        let image = #imageLiteral(resourceName: "img.jpg")
        let size: CGFloat = 120
        let screenW = UIScreen.main.bounds.width
        let space = (screenW - (2 * size)) / 3
        
        var images = [image]
        var cirImage = YQ.CircleImage.init(images: images, aSize: size * UIScreen.main.scale)
        var imageView = UIImageView.init(frame: CGRect.init(x:space , y: 50, width: size, height: size))
        imageView.image = cirImage.circleImage
        view.addSubview(imageView)
        
        images.append(image)
        cirImage = YQ.CircleImage.init(images: images, aSize: size * UIScreen.main.scale)
        imageView = UIImageView.init(frame: CGRect.init(x:space * 2 + size , y: 50, width: size, height: size))
        imageView.image = cirImage.circleImage
        view.addSubview(imageView)
        
        images.append(image)
        cirImage = YQ.CircleImage.init(images: images, aSize: size * UIScreen.main.scale)
        imageView = UIImageView.init(frame: CGRect.init(x:space , y: 100 + size, width: size, height: size))
        imageView.image = cirImage.circleImage
        view.addSubview(imageView)
        
        images.append(image)
        cirImage = YQ.CircleImage.init(images: images, aSize: size * UIScreen.main.scale)
        imageView = UIImageView.init(frame: CGRect.init(x:space * 2 + size , y: 100 + size, width: size, height: size))
        imageView.image = cirImage.circleImage
        view.addSubview(imageView)
        
    }

    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    }


}

如果你不想了解如何實(shí)現(xiàn)的击喂, 拷貝代碼即可使用啦

暫時(shí)只支持4個(gè)頭像维苔, 要支持更多的圖像, 按相同的思路擴(kuò)展即可懂昂!

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末介时,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子凌彬,更是在濱河造成了極大的恐慌沸柔,老刑警劉巖,帶你破解...
    沈念sama閱讀 211,743評(píng)論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件铲敛,死亡現(xiàn)場(chǎng)離奇詭異褐澎,居然都是意外死亡,警方通過(guò)查閱死者的電腦和手機(jī)伐蒋,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,296評(píng)論 3 385
  • 文/潘曉璐 我一進(jìn)店門工三,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái),“玉大人先鱼,你說(shuō)我怎么就攤上這事俭正。” “怎么了焙畔?”我有些...
    開(kāi)封第一講書人閱讀 157,285評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵掸读,是天一觀的道長(zhǎng)。 經(jīng)常有香客問(wèn)我宏多,道長(zhǎng)儿惫,這世上最難降的妖魔是什么? 我笑而不...
    開(kāi)封第一講書人閱讀 56,485評(píng)論 1 283
  • 正文 為了忘掉前任伸但,我火速辦了婚禮肾请,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘更胖。我一直安慰自己筐喳,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,581評(píng)論 6 386
  • 文/花漫 我一把揭開(kāi)白布函喉。 她就那樣靜靜地躺著,像睡著了一般荣月。 火紅的嫁衣襯著肌膚如雪管呵。 梳的紋絲不亂的頭發(fā)上,一...
    開(kāi)封第一講書人閱讀 49,821評(píng)論 1 290
  • 那天哺窄,我揣著相機(jī)與錄音捐下,去河邊找鬼账锹。 笑死,一個(gè)胖子當(dāng)著我的面吹牛坷襟,可吹牛的內(nèi)容都是我干的奸柬。 我是一名探鬼主播,決...
    沈念sama閱讀 38,960評(píng)論 3 408
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼婴程,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼廓奕!你這毒婦竟也來(lái)了?” 一聲冷哼從身側(cè)響起档叔,我...
    開(kāi)封第一講書人閱讀 37,719評(píng)論 0 266
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤桌粉,失蹤者是張志新(化名)和其女友劉穎,沒(méi)想到半個(gè)月后衙四,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體铃肯,經(jīng)...
    沈念sama閱讀 44,186評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,516評(píng)論 2 327
  • 正文 我和宋清朗相戀三年传蹈,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了押逼。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,650評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡惦界,死狀恐怖挑格,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情表锻,我是刑警寧澤恕齐,帶...
    沈念sama閱讀 34,329評(píng)論 4 330
  • 正文 年R本政府宣布,位于F島的核電站瞬逊,受9級(jí)特大地震影響显歧,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜确镊,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,936評(píng)論 3 313
  • 文/蒙蒙 一士骤、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧蕾域,春花似錦拷肌、人聲如沸。這莊子的主人今日做“春日...
    開(kāi)封第一講書人閱讀 30,757評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至采呐,卻和暖如春若锁,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背斧吐。 一陣腳步聲響...
    開(kāi)封第一講書人閱讀 31,991評(píng)論 1 266
  • 我被黑心中介騙來(lái)泰國(guó)打工又固, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留仲器,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 46,370評(píng)論 2 360
  • 正文 我出身青樓仰冠,卻偏偏與公主長(zhǎng)得像乏冀,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子洋只,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,527評(píng)論 2 349

推薦閱讀更多精彩內(nèi)容