美文网首页
修改图片透明度

修改图片透明度

作者: 路这么长 | 来源:发表于2016-11-17 10:19 被阅读8次

** 修改图片透明度 <h1>**

** 参数 1:修改的透明度 参数2:需要修改的图片 <h3>**

-(UIImage*)imageByApplyingAlpha:(CGFloat)alphaimage:(UIImage*)image
{
UIGraphicsBeginImageContextWithOptions(image.size,NO,0.0f);
CGContextRefctx =UIGraphicsGetCurrentContext();
CGRectarea =CGRectMake(0,0, image.size.width, image.size.height);
CGContextScaleCTM(ctx,1, -1);
CGContextTranslateCTM(ctx,0, -area.size.height);
CGContextSetBlendMode(ctx,kCGBlendModeMultiply);
CGContextSetAlpha(ctx, alpha);
CGContextDrawImage(ctx, area, image.CGImage);**
UIImage*newImage =UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
returnnewImage;
}

** 用此方法可以设置 navigationBar的 背景图片的透明度**

相关文章

网友评论

      本文标题:修改图片透明度

      本文链接:https://www.haomeiwen.com/subject/hhddpttx.html