The cgimagemaskcreate tag has no wiki summary.
1
vote
2answers
677 views
Replace all white/nearly white pixels in a UIImage with alpha using CGImage?
I have a UIImage with white background. I would like replace the white background/pixels with alpha-transparent pixels. I've looked at other questions on StackOverflow, along with Quartz ...
1
vote
1answer
994 views
Why does my image mask make my image black, where the mask is white?
I have a 300 x 400 px PNG-24 with alpha channel. It's about 140kb. I want to mask out some parts of that, so I created another 300 x 400 image as PNG-24 but with only black, gray and white and no ...
0
votes
0answers
98 views
Color Masking the entire contents of CALayer
I have a CALayer with a bunch of sublayers which hold static and animated images.
I want to mask everything with one color(black).
The images have transparency and I want the mask only to apply on ...
0
votes
2answers
286 views
cgimagemaskcreate and memory leak, how to fix it
i have this code:
Texture2D *cachedTexture;
if(cachedTexture = [cachedTextures objectForKey:aName]) {
return cachedTexture;
}
// We are using imageWithContentsOfFile rather than imageNamed, as ...
0
votes
0answers
268 views
Replace colors and blur color edges Quartz 2D
So I have a jpg/png file of an image that I'd like to replace each of the 3 colors with 3 different colors (i do have a grayscale copy of this image too if that would help). See the following:
The ...