gd ライブラリ コードを使用して四角形を作成しています。PHPで長方形の境界線の半径を取得するにはどうすればよいですか.
ここに私のコードがあります:
$bg_color="5465FF";
$text_color="61FF66";
$button_width = 150;
$button_height =50;
$textdisplay="text";
$r_bg = hexdec("0x".substr($bg_color,0,2));
$g_bg = hexdec("0x".substr($bg_color,2,2));
$b_bg = hexdec("0x".substr($bg_color,4,2));
$r_bgt = hexdec("0x".substr($text_color,0,2));
$g_bgt = hexdec("0x".substr($text_color,2,2));
$b_bgt = hexdec("0x".substr($text_color,4,2));
header('content-type: image/png');
$image = imagecreate($button_width, $button_height);
$blue = imagecolorallocate($image, $r_bg, $g_bg, $b_bg);
$red = imagecolorallocate($image, $r_bgt, $g_bgt, $b_bgt);
imagestring($image,18,0,0,$textdisplay,$red);
imagepng($image);
imagedestroy($image);
長方形を次のようにしたいと思います。