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

link|improve this question

hi ReachConnection : how to Convert YUV to RGB. can plz give guide lines – Asta ni enohpi Jun 10 '11 at 13:51
feedback

1 Answer

up vote 1 down vote accepted

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|improve this answer
I know how to convert YUV to RGB, how do you convert RGB to CGImage? – ReachConnection Oct 14 '09 at 15:02
That's not a conversion. You create a CGImage object with the RGB data, using CGImageCreate: developer.apple.com/mac/library/documentation/GraphicsImaging/… – Peter Hosey Oct 14 '09 at 19:37
feedback

Your Answer

 
or
required, but never shown

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