CCSprite颜色混合,类似于UIImage上的kCGBlendModeColor

问题描述

|| 我试图在精灵图像上叠加颜色,并对如何将颜色与精灵混合有疑问。我使用以下
updateImageTint
例程将颜色叠加在
UIImage
上,并且输出是我想要的。图像保持白色,但是灰色阴影被指定的覆盖颜色饱和或烧毁。参数
kCGBlendModeColor
似乎可以实现标准
UIImage
色彩融合。 但是,我试图使用精灵来获得相同的效果,但是颜色看起来就像是在整个图像,白色区域以及所有区域之上的着色。我假设这是一个混合问题。是否可以传递给setBlendFunc以获取与以下“ 0”方法相匹配的输出的一组参数? 我已经尝试过...但是没有运气
[spriteToAdjust setBlendFunc: (ccBlendFunc) { GL_ONE,GL_ONE }];
[spriteToAdjust setColor:ccc3(red*255.0,green*255.0,blue*255.0)];

-(UIImage*) updateImageTint:(UIImage*) img toColor:(UIColor*) toColor
{

// begin a new image context,to draw our colored image onto
UIGraphicsBeginImageContext(img.size);

// get a reference to that context we created
CGContextRef context = UIGraphicsGetCurrentContext();

// set the fill color
UIColor *color = toColor;
[color setFill];

// translate/flip the graphics context (for transforming from CG* coords to UI* coords
CGContextTranslateCTM(context,img.size.height);
CGContextScaleCTM(context,1.0,-1.0);

// set the blend mode to color burn,and the original image
CGContextSetBlendMode(context,kCGBlendModeColor);
CGRect rect = CGRectMake(0,img.size.width,img.size.height);
CGContextDrawImage(context,rect,img.CGImage);

// set a mask that matches the shape of the image,then draw (color burn) a colored rectangle
CGContextClipToMask(context,img.CGImage);
CGContextAddRect(context,rect);
CGContextDrawPath(context,kCGPathFill);

// generate a new UIImage from the graphics context we drew onto
UIImage *coloredImg = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();

//return the color-burned image
return coloredImg;
}
    

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)

相关问答

错误1:Request method ‘DELETE‘ not supported 错误还原:...
错误1:启动docker镜像时报错:Error response from daemon:...
错误1:private field ‘xxx‘ is never assigned 按Alt...
报错如下,通过源不能下载,最后警告pip需升级版本 Requirem...