我要创建带有2个图标的图像,例如带有配置文件图片..的地图标记
我从Google那里获得了一个代码,但是我不知道如何使用该代码
$my_img = imagecreate( 200, 80 );
$background = imagecolorallocate( $my_img, 0, 0, 255 );
$text_colour = imagecolorallocate( $my_img, 255, 255, 0 );
$line_colour = imagecolorallocate( $my_img, 128, 255, 0 );
imagestring( $my_img, 4, 30, 25, "thesitewizard.com", $text_colour );
imagesetthickness ( $my_img, 5 );
imageline( $my_img, 30, 45, 165, 45, $line_colour );
header( "Content-type: image/png" );
imagepng( $my_img );
imagecolordeallocate( $line_color );
imagecolordeallocate( $text_color );
imagecolordeallocate( $background );
imagedestroy( $my_img );
?>
示例链接= https://localsafedating.com/mapicon.php?g=200
我有2个部分,第一个是圆圈,第二个是个人资料图片。现在我想制作一个png图片。
如果有人知道的话,请帮助我:)预先感谢