iCloudys / PZXImageMostColorsTool

判断图片主色调是亮色还是暗色,方便做相应处理

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PZXImageMostColorsTool

判断图片主色调是亮色还是暗色,方便做相应处理

    if ([[PZXImageMostColorsTool sharedInstance] isLightWithImageView:self.imageView]) {
        self.label.textColor = [UIColor blackColor];
    }else{
        self.label.textColor = [UIColor whiteColor];

    }

在makrdown上生成gif动画

About

判断图片主色调是亮色还是暗色,方便做相应处理


Languages

Language:Objective-C 100.0%