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

I 'm trying to copy a page from a CGPDFPageRef into a new CGPDFDocumentRef, but I want to remove all white pixels to make them transparent instead in the new PDF.

The basics are simple but I can't figure out how to remove the white pixels.

CGContextRef pdfContext = CGPDFContextCreateWithURL ((__bridge CFURLRef)[NSURL fileURLWithPath:output], &mediaBox, NULL);
CGContextDrawPDFPage(pdfContext, sourcePage);

I looked at different blend modes but I guess I need to apply some sort of filter. May be using Core Image? Would I need to build my own filter? I'd appreciate any ideas...

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.