我是 imagecreate()、imagefilledrectangle 等的新手……试图创建一个带有边框的图像,但我似乎无法弄清楚我错过了什么。
这是我的代码:
$im = imagecreate (200,150);
// Create some colors
$white = imagecolorallocate($im, 255, 255, 255);
$grey = imagecolorallocate($im, 128, 128, 128);
$black = imagecolorallocate($im, 0, 0, 0);
$blue = imagecolorallocate($im, 0, 105, 179);
$background = imagecolorallocate($im, 255, 255, 255);
imagefilledrectangle($im, 0, 0, 200, 150, $background);
新的假设我想在它周围放置一个 1 px 的蓝色边框,由上面的 $blue 定义。
我需要在此处添加什么才能放置此边框?
一如既往地提前感谢。