iOS 对图像进行着色将其变成黑色

发布于 2024-11-28 02:56:52 字数 1017 浏览 1 评论 0原文

我有一个在连接到 SBAwayView 后创建的方法:

- (UIImage *) colorizeImage:(UIImage *)img color:(UIColor *)color{

    NSString *name = @"badge.png";
    UIImage *img = [UIImage imageNamed:name];

    UIGraphicsBeginImageContext(img.size);

    CGContextRef context = UIGraphicsGetCurrentContext();

    [color setFill];

    CGContextTranslateCTM(context, 0, img.size.height);
    CGContextScaleCTM(context, 1.0, -1.0);

    CGContextSetBlendMode(context, kCGBlendModeColorBurn);
    CGRect rect = CGRectMake(0, 0, img.size.width, img.size.height);
    CGContextDrawImage(context, rect, img.CGImage);

    CGContextClipToMask(context, rect, img.CGImage);
    CGContextAddRect(context, rect);
    CGContextDrawPath(context,kCGPathFill);

    UIImage *coloredImg = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();

    return coloredImg;
}

但是当我向它发送颜色

[[UIColor alloc] initWithRed:0.0 green:0.0 blue:1.0 alpha:1.0];

和图像时,它只是将其返回为完全变黑!

I have this method which I created after hooking into SBAwayView:

- (UIImage *) colorizeImage:(UIImage *)img color:(UIColor *)color{

    NSString *name = @"badge.png";
    UIImage *img = [UIImage imageNamed:name];

    UIGraphicsBeginImageContext(img.size);

    CGContextRef context = UIGraphicsGetCurrentContext();

    [color setFill];

    CGContextTranslateCTM(context, 0, img.size.height);
    CGContextScaleCTM(context, 1.0, -1.0);

    CGContextSetBlendMode(context, kCGBlendModeColorBurn);
    CGRect rect = CGRectMake(0, 0, img.size.width, img.size.height);
    CGContextDrawImage(context, rect, img.CGImage);

    CGContextClipToMask(context, rect, img.CGImage);
    CGContextAddRect(context, rect);
    CGContextDrawPath(context,kCGPathFill);

    UIImage *coloredImg = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();

    return coloredImg;
}

But when I send it the color

[[UIColor alloc] initWithRed:0.0 green:0.0 blue:1.0 alpha:1.0];

and an image it just returns it as completely blackened!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文