如何将图片框添加到UIImage?

时间:2012-03-17 05:35:17

标签: iphone objective-c ios uiimage

我正在开发一个iphone应用程序,我想在图像中添加一个不同的帧(例如黑色砂砾,旧时间等),然后用该帧保存该图像。

是否可以在iPhone应用程序中使用。请给我一些建议。谢谢。

enter image description here

1 个答案:

答案 0 :(得分:1)

查看此网站,它可能会对您有所帮助:

  

How can i take an UIImage and give it a black border?

您需要实现以下代码:

#import <QuartzCore/QuartzCore.h>

[imageView.layer setBorderColor: [[UIColor blackColor] CGColor]];
[imageView.layer setBorderWidth: 2.0];