Reputation: 8546
How can I duplicate a CIImage from another CIImage without going through rendering a CGImage
Upvotes: 1
Views: 1752
Reputation: 108091
CIImage *copiedImage = [originalImage copy];
As you can read in the documentation, CIImage
conforms to NSCopying
.
Upvotes: 4