1

I am working on an iphone application where I want to add a different frame(e.g. black grit, oldtime, etc) to an image and save that image with that frame.

Is it possible in iphone application. Please give me suggestion.Thanks.

enter image description here

Matthias Bauch
  • 89,811
  • 20
  • 225
  • 247
M.S.B
  • 121
  • 1
  • 9

1 Answers1

1

Check this question.

You need to implement following code:

#import <QuartzCore/QuartzCore.h>

[imageView.layer setBorderColor: [[UIColor blackColor] CGColor]];
[imageView.layer setBorderWidth: 2.0];
halfer
  • 19,824
  • 17
  • 99
  • 186
Yama
  • 2,649
  • 3
  • 31
  • 63