我有一个 PNG 图像,我想用渐变填充该图像。这可能吗?
表示在 iPad 上触摸时该部分应填充渐变。
就像在洪水填充图像中用简单的颜色(R+G+B)填充一样。
我想要那个图像填充渐变。
提前感谢您的帮助。
这是我的代码行,我发现不规则形状,然后通过触摸填充颜色,我需要对其进行修改。
- (unsigned char*)rawDataFromImage:(UIImage*)image
{
CGImageRef imageRef = [image CGImage];
NSUInteger width = CGImageGetWidth(imageRef);
NSUInteger height = CGImageGetHeight(imageRef);
NSLog(@"w=%d,h=%d",width,height);
CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB();
unsigned char *rawData = malloc(height * width * 4);
NSUInteger bytesPerPixel = 4;
NSUInteger bytesPerRow = bytesPerPixel * width;
NSUInteger bitsPerComponent = 8;
CGContextRef context = CGBitmapContextCreate(rawData, width, height,
bitsPerComponent, bytesPerRow, colorSpace,
kCGImageAlphaPremultipliedLast | kCGBitmapByteOrder32Big);
CGColorSpaceRelease(colorSpace);
CGContextDrawImage(context, CGRectMake(0, 0, width, height), imageRef);
CGContextRelease(context);
return rawData;
}
如果有人对此有不同的解决方案,请给我。
我不想在图像上绘制颜色,我想在图像上触摸和填充,但要使用渐变。