In 10.6 with some systems CoreImage CIPerspectiveTransform (And other api's too) results in colored patches in output image. (It seems like hardware related issue And it occurs only with images with resolution above 4000X2500)

Is there ay way to come out of this bug? At-last is it possible to use NSAffineTransform instead? If yes how to use it.

Thanks, Dhana.

link|improve this question

76% accept rate
feedback

1 Answer

up vote 5 down vote accepted

When creating your CIContext, have you tried disabling the hardware renderer? This fixed problems for me:

CIContext *context = [CIContext contextWithCGContext:[[NSGraphicsContext currentContext] graphicsPort]
                                             options:[NSDictionary dictionaryWithObjectsAndKeys:
                      [NSNumber numberWithBool:YES], kCIContextUseSoftwareRenderer, nil]];
link|improve this answer
Great info! Probably makes sense to make disabling of hardware rendering dependent on the image size so you would still use it for smaller images, – VoidPointer Oct 13 '09 at 12:09
Thank you iKenndac, This one worked for me too.. – Dhanaraj Oct 16 '09 at 11:33
feedback

Your Answer

 
or
required, but never shown

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