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...