How can i take an UIImage and give it a black border? (iphone)
tnx
|
How can i take an UIImage and give it a black border? (iphone) tnx
| |||
|
feedback
|
|
With OS > 3.0 you can do this:
| |||||||
feedback
|
|
You can do this by creating a new image (also answered in your other posting of this question):
This code will produce a pink border around the image. However if you are going to just display the border then use the layer of the UIImageView and set its border. | |||
|
feedback
|
This code can be used for adding | ||||
|
feedback
|
|
You can't add a border, but this would work for the same effect. You could also make the UIView called blackBG in this example into a UIImageView with a border image and a blank middle, and then you'd have a custom image border instead of just black.
| |||
|
feedback
|
|
You could manipulate the image itself, but a much better way is to simply add a UIView that contains the UIImageView, and change the background to black. Then set the size of that container view to a little bit larger than the UIImageView. | |||||||
feedback
|
|
You can add border to the UIImageView, and then change the size of the UIimageView according to the image size:
Make sure you to set the origin of the imageView to the center | |||
|
feedback
|
|
all these answers work fine BUT add a rect to an image. Suppose You have a shape (in my case a butterfly) and You want to add a border (a red border): we need two steps: 1) take the image, convert to CGImage, pass to a function to draw offscreen in a context using CoreGraphics, and give back a new CGImage 2) convert to uiimage back and draw:
}
} I added a normal butterfly and a red-bordered bigger butterfly. | |||
|
feedback
|