iOS:图片URL转UIImage;UIColor转UIImag

2022-07-26  本文已影响0人  Minnie_Liu

//url->UIImage

-(UIImage *) getImageFromURL:(NSString *)fileURL {

    UIImage*result;

    NSData * data = [NSData dataWithContentsOfURL:[NSURL URLWithString:fileURL]];

    result = [UIImage imageWithData:data];

    return result;

}

//  颜色转换为背景图片UIColor->UIImage

- (UIImage*)imageWithColor:(UIColor*)color {

    CGRect rect =CGRectMake(0.0f,0.0f,1.0f,1.0f);

    UIGraphicsBeginImageContext(rect.size);

    CGContextRef context = UIGraphicsGetCurrentContext();

    CGContextSetFillColorWithColor(context, [color CGColor]);

    CGContextFillRect(context, rect);

    UIImage *image = UIGraphicsGetImageFromCurrentImageContext();

    UIGraphicsEndImageContext();

    return image;

}

上一篇 下一篇

猜你喜欢

热点阅读