Forum Moderators: not2easy
image > canvas size
Change the units to pixels and increase the width and height by double the width you want the border to be.
e.g if the photo is 600px by 400px and you want a 4px border all the way round, change it to 608 by 408.
Add a white background layer and your done.
;)
[edited by: benihana at 9:42 am (utc) on April 26, 2005]
just thought - is the photo to go on a webpage?
If so you would be better adding the border through css,
e.g.
img {
border:4px solid #fff;
}
or to have a black outline round the white border:
img {
background-color:#fff;
padding:4px;
border:1px solid #000;
}
havent tried second option, does padding work on images...?