php GD 和图像处理函数, 制作一张图片
1 // GD 和图像处理函数 2 // https://www.php.net/manual/zh/ref.image.php 3 // https://www.php.net/manual/zh/ref.image.php 4 $size = 300; 5 $image=imagecreatetruecolor($size+200, $size+400); 6 7 // 用黑色边框得到白色背景的东西 8 $back = imagecolorallocate($image, 255, 255, 255); 9 $border = imagecolorallocate($image, 0, 0, 0);10 imagefilledrectangle($image, 0, 0, $size + 150, $size + 100, $back);11 imagerectangle($image, 0, 0, $size +150, $size + 100, $border);12 13 $yellow_x = 200;14 $yellow_y = 175;15 $radius = 250;16 17 // 使用 alpha 值分配颜色18 $yellow = imagecolorallocatealpha($image, 255, 255, 0, 75);19 $text_color = imagecolorallocate($image, 233, 14, 91);20 21 // 画一个圆22 imagefilledellipse($image, $yellow_x, $yellow_y, $radius, $radius, $yellow);23 // 画一个矩形24 // imagefilledrectangle($image,$yellow_x-100, $yellow_y-100, $radius+50, $radius+40, $yellow);25 // 水平地画一行字符串26 imagestring($image, 5, 150, 150, "hello world", $text_color);27 // 垂直地画一行字符串28 // imagestringup ($image, 5, 150, 150, "hello world", $text_color);29 30 // 告诉浏览器输出 png 图片31 header('Content-type: image/png');32 33 // 输出结果34 imagepng($image);35 imagedestroy($image);