为了账号安全,请及时绑定邮箱和手机立即绑定

五角星

<?php

$img = imagecreatetruecolor(100, 100);

$red = imagecolorallocate($img, 0xFF, 0xF1, 0x00);

//在这里使用imageline绘制线条

imageline($img, 0, 30, 100, 30, $red);

imageline($img, 0, 100, 100, 30, $red);

imageline($img,0,100, 50, 0, $red);

imageline($img, 50, 0, 100, 100, $red);

imageline($img, 0, 30, 100, 100, $red);

header("content-type: image/png");

imagepng($img);

imagedestroy($img);


正在回答

3 回答

<?php

$img = imagecreatetruecolor(100, 100);

$red = imagecolorallocate($img, 0xFF, 0x00, 0x00);

//在这里使用imageline绘制线条

$up = 50;

$left = $right =35;

$ldown = 15;

$rdown = 100-$ldown;

imageline($img, 0, $left, 100, $right, $red);

imageline($img, $ldown, 100, 100, $right, $red);

imageline($img,$ldown,100, $up, 0, $red);

imageline($img, $up, 0, $rdown, 100, $red);

imageline($img, 0, $right, $rdown, 100, $red);

header("content-type: image/png");

imagepng($img);

imagedestroy($img);


五角星.改

0 回复 有任何疑惑可以回复我~

有才!

0 回复 有任何疑惑可以回复我~

不错!

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
PHP进阶篇
  • 参与学习       181829    人
  • 解答问题       2577    个

轻松学习PHP中级课程,进行全面了解,用PHP快速开发网站程序

进入课程
意见反馈 帮助中心 APP下载
官方微信