首页 > 代码库 > 产生纯色图像

产生纯色图像

    UIGraphicsBeginImageContextWithOptions(imagBounds.size, NO, 0);
    [color setFill];
    UIRectFill(imagBounds);
    UIImage *img = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    return img;

产生纯色图像