IOS Hair Glass Pictures

Source: Internet
Author: User

+ (UIImage *) Blurwithcoreimage: (UIImage *) sourceimage withframe: (CGRect) frame

{

Ciimage *inputimage = [Ciimage imageWithCGImage:sourceImage.CGImage];

Apply affine-clamp Filter to stretch the image so, it does not look shrunken when Gaussian blur is applied

Cgaffinetransform transform = cgaffinetransformidentity;

Cifilter *clampfilter = [Cifilter filterwithname:@ "Ciaffineclamp"];

[Clampfilter setvalue:inputimage forkey:@ "Inputimage"];

[Clampfilter setvalue:[nsvalue valuewithbytes:&transform objctype: @encode (cgaffinetransform)] forKey:@ " Inputtransform "];

Apply Gaussian blur filter with radius of 30

Cifilter *gaussianblurfilter = [Cifilter filterwithname: @ "Cigaussianblur"];

[Gaussianblurfilter setValue:clampFilter.outputImage Forkey: @ "Inputimage"];

[Gaussianblurfilter setvalue:@3 forkey:@ "Inputradius"];

Cicontext *context = [Cicontext Contextwithoptions:nil];

Cgimageref cgimage = [Context createCGImage:gaussianBlurFilter.outputImage fromrect:[inputimage extent];

Set up output context.

Uigraphicsbeginimagecontext (frame.size);

Cgcontextref Outputcontext = Uigraphicsgetcurrentcontext ();

CGCONTEXTSCALECTM (Outputcontext, 1.0,-1.0);

CGCONTEXTTRANSLATECTM (outputcontext, 0,-frame.size.height);

Draw base image.

Cgcontextdrawimage (Outputcontext, Frame, cgimage);

Apply White Tint

Cgcontextsavegstate (Outputcontext);

Cgcontextsetfillcolorwithcolor (Outputcontext, [Uicolor colorwithwhite:1 alpha:0.2]. Cgcolor);

Cgcontextfillrect (Outputcontext, frame);

Cgcontextrestoregstate (Outputcontext);

Output image is ready.

UIImage *outputimage = Uigraphicsgetimagefromcurrentimagecontext ();

Cgimagerelease (Cgimage);

Uigraphicsendimagecontext ();

return outputimage;

}

IOS Hair Glass Pictures

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.