vote up 0 vote down star

How can I write a YUV frame data into a CGContext?

flag

1 Answer

vote up 0 vote down check

Convert it to RGB, then create a CGImage with it, then draw that into the context.

Alternatively, create a CGColorSpace that maps YUV into RGB, then create a CGImage with it, then draw that into the context. (I have no idea whether this is possible, but you may want to look into it.)

link|flag
I know how to convert YUV to RGB, how do you convert RGB to CGImage? – ReachConnection Oct 14 at 15:02
That's not a conversion. You create a CGImage object with the RGB data, using CGImageCreate: developer.apple.com/mac/library/… – Peter Hosey Oct 14 at 19:37

Your Answer

Get an OpenID
or

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