从旧的UIImage中绘制新的UIImage

时间:2012-06-06 09:37:06

标签: objective-c ios5 uiimage

我有像下面这样的UIImage enter image description here

我想从bove图像中绘制一个新图像,如视频图标和视频时长例如enter image description here

任何人都可以帮助绘制如上所述的代码或提前参考任何博客..

2 个答案:

答案 0 :(得分:1)

但是,如果你想在iphone中像预览屏幕一样显示图像,只需创建一个自定义uiview,其中包含2 uiimageview图像和相机,底部边框,以及一个可编辑的持续时间。然后你可以根据任何图像/视频持续时间的持续时间来更新这个标签。

答案 1 :(得分:1)

如果你有一个UIImageView * myImage,你可以这样做:

UILabel *myLabel = [[UILabel alloc] initWithFrame:CGRectMake(x,y,w,h)];
myLabel.text = yourString;
myLabel.backgroundColor = [UIColor colorWithRed:0 green:0 blue:0 alpha:0.2];

[myImage addSubView:myLabel];

[myLabel release];

希望我理解你的问题。