UIImage+Blurring.h 283 B

123456789101112131415161718
  1. //
  2. // UIImage+Blurring.h
  3. // NYXImagesKit
  4. //
  5. // Created by @Nyx0uf on 03/06/11.
  6. // Copyright 2012 Nyx0uf. All rights reserved.
  7. // www.cocoaintheshell.com
  8. //
  9. #import "NYXImagesHelper.h"
  10. @interface UIImage (NYX_Blurring)
  11. -(UIImage*)gaussianBlurWithBias:(NSInteger)bias;
  12. @end