I’m trying to create a bordered, transparent circle.
I created a circle with the ellipsis tool, then Select->Border, then Edit->Fill with FG Color. The result is a terribly jagged border.
I tried adding a gaussian blur, but it looks terrible, looks like the image is popping up. It just seems like very poor quality, how can I increase the number of pixels being used for the color around the edes?
I mean look at the “so jagged” text, the lines are so smooth for the letters.
Answer
Colour depth is the number of bits/bytes used to display a colour. Presently you’re using an 8-bit depth, giving you 256 colours (0-255). This is an indexed colour approach, the different values (from 0-255) are paletted, meaning that the each of the 256 values points to a colour representation stored in the header of the graphics document you’re working on.
There are a number of other formats which will allow you to produce the required smooth edges. Try changing your image format to 24 or 32-bit depth.
In GIMP you can do this like so…
You’ll then need to tick the Feather option in the Select Border dialog box.
Update…
Once you have an RGB format document you can turn anti-aliasing on or off for the selected area:
It’s also possible, from here, to create your oval using guides and remove the centre of your selection.
Update 2…
I’ve played a bit more with this, and it is possible to create a nicely antialiased circle or oval by following these steps…
- Create a new layer.
- Add guides to the shape to reflect the width and height of the outside and inside of the shape…
- Select the oval selection tool and select the outside of the shape…
- Deselect the active selection by clicking outside of the selected area somewhere.
- Change the selection mode of the oval selection tool to *Subtract from current selection…
- Select the inside of your oval…
- Pick the brush or fill tool and paint the inside of the selection…
- Take a look at your newly anti-aliased shape…
Attribution
Source : Link , Question Author : John Smith , Answer Author : Paul