I've got an image which i'm drawing onto. I need to draw a circle which i've done but I would like to add these two features to it.
- Add a stroke/border around it.
- Add one simple work to it.
how could I do this
this is my simple circle now
$gray = imagecolorallocate($image, 0xC0, 0xC0, 0xC0);
imagefilledarc($image, $x2, $y2, 100, 100, 0, 0, $gray, IMG_ARC_EDGED);