我发现这个代码用于转换文本到图像,我想在这里回显结果: echo image from converting text-to-image
但是我想将它应用于我选择加粗的单词,以便当我将一段文本加粗时,php脚本将输出带有粗体标签的文本的图像版本(输出图像)不一定要大胆)
<?php
// Set the content-type
header('Content-type: image/png');
// Create the image
$im = imagecreatetruecolor(400, 30);
// Create some colors
$white = imagecolorallocate($im, 255, 255, 255);
$grey = imagecolorallocate($im, 128, 128, 128);
$black = imagecolorallocate($im, 0, 0, 0);
imagefilledrectangle($im, 0, 0, 399, 29, $white);
// The text to draw
$text = 'Testing...';
// Replace path by your own font path
$font = 'arial.ttf';
// Add some shadow to the text
imagettftext($im, 20, 0, 11, 21, $grey, $font, $text);
// Add the text
imagettftext($im, 20, 0, 10, 20, $black, $font, $text);
// Using imagepng() results in clearer text compared with imagejpeg()
imagepng($im);
imagedestroy($im);
?>
使用此脚本仅选择粗体文本的任何帮助都会非常棒,谢谢