Picture used for mask matte effect with Resizableimage

Source: Internet
Author: User

Picture used for mask matte effect with Resizableimage

Effect:

A picture used as a material:

Source:

////VIEWCONTROLLER.M//Rect////Created by youxianming on 15/3/29.//Copyright (c) 2015 youxianming. All rights reserved.//#import "ViewController.h"@interfaceViewcontroller ()@end@implementationViewcontroller- (void) viewdidload {[Super viewdidload]; //Background MapUiimageview *bgview = [[Uiimageview alloc] initwithimage:[uiimage imagenamed:@"Psb.jpeg"]]; Bgview.frame= CGRectMake (0,0, BgView.frame.size.width/2. F, BgView.frame.size.height/2. f); Bgview.center=Self.view.center;        [Self.view Addsubview:bgview]; //A picture used as a maskUIImage *maskimage = [UIImage imagenamed:@"rect_new"]; Maskimage= [Maskimage Resizableimagewithcapinsets:uiedgeinsetsmake ( -, -, -, -) Resizingmode:uiimageresizingmodetile]; //View as MaskUiimageview *maskview = [[Uiimageview alloc] Initwithframe:cgrectmake (0,0, -, -)]; Maskview.image=Maskimage; Bgview.maskview=Maskview; //Performing animations[Uiimageview animatewithduration:3. F animations:^{maskview.frame=Bgview.bounds; }];}@end

Details to be aware of:

This is very convenient for making the alpha channel gradient effect.

Picture used for mask matte effect with Resizableimage

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.