Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I assume that the background is transparent automatically if I use the device color space (RGBA, so with alpha). But I'm not sure.

How can I set the background color of my drawing canvas or bitmap context explicitely to make sure it is transparent when it is created?

share|improve this question
possible duplicate stackoverflow.com/questions/1135769/… – Mr. Black May 30 '11 at 13:14

3 Answers

up vote 1 down vote accepted
CGContextSetRGBFillColor ( c red green blue alpha -- )

USING: alien.c-types alien.syntax core-graphics.types ;
IN: core-graphics
FUNCTION: void CGContextSetRGBFillColor ( CGContextRef c, CGFloat red, CGFloat green, CGFloat blue,CGFloat alpha ) ;

see more: http://oss.infoscience.co.jp/factor/docs.factorcode.org/content/word-CGContextSetRGBFillColor,core-graphics.html

share|improve this answer

CGContextSetRGBFillColor(ctx, 0, 0, 0, 1); //black color

CGContextSetRGBFillColor(ctx, 0, 0, 0, 0); //transparent color - alpha set to null

share|improve this answer

This code will work fine.

 // transparent
 CGContextSetRGBFillColor(cacheContext, 0.0, 0.0, 0.0, 0.0);
 // image
 CGImageRef cgImage = [[UIImage imageNamed:@"img.png"] CGImage];
 CGContextDrawImage(cacheContext, self.bounds, cgImage);
 CGContextFillRect(cacheContext, self.bounds);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.