iphone UIView draw layer on picture

本文介绍如何在 UIView 上绘制一张图片,并在其上添加一个半透明层。通过使用 Core Graphics 进行坐标系修改及图层绘制,实现了对背景图片的美化效果。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

 

  最近做了一个在UIView 上面画图片,然后给在图片上面见一层半透明Layer得 iphone Demo,上传上来供大家交流,讨论.如果有更好得实现希望各位不吝赐教。

 

在UIView drawRect 里面进行编码,详细代码如下:

- (void)drawRect:(CGRect)rect

    CGContextRef context = UIGraphicsGetCurrentContext();
    UIImage* img = [UIImage imageNamed: @"bg.png"];
   
    CGContextSaveGState(context);

 

   //Modify Coordinate system

    CGContextTranslateCTM(context, 0, self.frame.size.height);
    CGContextScaleCTM(context, 1, -1);

 

   //draw bg image
     CGContextDrawImage(context, self.frame, img.CGImage);
   
    //draw layer
    CGLayerRef aboveLayer = CGLayerCreateWithContext(context, self.frame.size,  NULL);
    CGContextRef aboveContext = CGLayerGetContext(aboveLayer);
   
    CGFloat vc[] = {0.5, 0.5, 0.5, 0.5};
    CGContextSetFillColor(aboveContext, vc);
    CGContextFillRect(aboveContext, self.frame);
    CGContextDrawLayerInRect(context, self.frame, aboveLayer);//draw layer
    CGLayerRelease(aboveLayer);//release layer
   
    CGContextRestoreGState(context);

程序原图(bg.png):

程序原图

 

运行结果:

运行结果

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值