Are there specific techniques or functions in PHP that can help reduce the appearance of unwanted color tones around text in generated images?

When generating images with text using PHP, unwanted color tones around the text can sometimes appear due to anti-aliasing or blending with the background color. One way to reduce this effect is to use the `imagettftext()` function with a slight offset in the text color to create a border-like effect around the text, giving it more definition and reducing the appearance of unwanted color tones.

// Create a new true color image
$image = imagecreatetruecolor(400, 200);

// Set the background color
$bgColor = imagecolorallocate($image, 255, 255, 255);
imagefill($image, 0, 0, $bgColor);

// Set the text color
$textColor = imagecolorallocate($image, 0, 0, 0);

// Set the font file and text to be displayed
$font = 'arial.ttf';
$text = 'Hello, World!';

// Add text with a slight offset in the text color to create a border-like effect
imagettftext($image, 20, 0, 10, 50, $textColor, $font, $text);
imagettftext($image, 20, 0, 12, 52, $textColor, $font, $text);

// Output the image
header('Content-Type: image/png');
imagepng($image);

// Free up memory
imagedestroy($image);