are there any filters to pixelate an image programmatically in iOS?
If not, how can i pixelate an image in easy way?
thanks.
Like pixel effect on eBay app for iPad (menu drag to open, on the top left)
are there any filters to pixelate an image programmatically in iOS?
If not, how can i pixelate an image in easy way?
thanks.
Like pixel effect on eBay app for iPad (menu drag to open, on the top left)
If you mean pixelize, you can take a look at both these links
How to pixelize / add pixelating effect to a UIImage in iOS
or
How do I perform a fast pixellation filter on an image?
How about the use the Core Image
filter named CIPixellate
?
I posted the code snippet in this Answer of How do I perform a fast pixellation filter on an image?