Nicolas Manzini
Nicolas Manzini

Reputation: 8546

How to duplicate (copy) a CIImage

How can I duplicate a CIImage from another CIImage without going through rendering a CGImage

Upvotes: 1

Views: 1752

Answers (1)

Gabriele Petronella
Gabriele Petronella

Reputation: 108091

CIImage *copiedImage = [originalImage copy];

As you can read in the documentation, CIImage conforms to NSCopying.

Upvotes: 4

Related Questions