我需要知道如何在 iOS 中剪辑图像。我已经J2ME
使用画布设置剪辑方法进行了这项工作。现在我想知道如何在 iOS 中做到这一点。这是我想要的一个例子。
这是我在故事板中绘制的原始图像
这是我想要实现的图像。我想隐藏那个红色图像的某些部分。
我尝试过这样的事情,但我不能得到我想要的。
UIImageView *imv = [[UIImageView alloc]initWithFrame:CGRectMake(0 ,305, 98, 139)];
imv.image=[UIImage imageNamed:@"red.png"];
imv.frame = CGRectMake(0 ,305, 98, redImageHeight);
imv.clipsToBounds = YES;
imv.contentMode = UIViewContentModeTop;
[self.view addSubview:imv];