@@ -54,8 +54,8 @@ public function applyToImage(Image $image, $x = 0, $y = 0)
             $border_color = new Color($this->border_color);
             imagesetthickness($image->getCore(), $this->border_width);
 
-            // gd's imageellipse doesn't respect imagesetthickness so i use imagearc with 359.9 degrees here
-            imagearc($image->getCore(), $x, $y, $this->width, $this->height, 0, 359.99, $border_color->getInt());
+            // gd's imageellipse doesn't respect imagesetthickness so i use imagearc with 360 degrees here
+            imagearc($image->getCore(), $x, $y, $this->width, $this->height, 0, 360, $border_color->getInt());
         } else {
             imagefilledellipse($image->getCore(), $x, $y, $this->width, $this->height, $background->getInt());
         }