于是自己动手考试测验一下,哈哈!
利用的编程措辞是PHP。

详细代码

<?php

$width = 600;

php代码敲出爱心编程输出爱心送给你心爱的Ta Ruby

$height = 650;

header(\公众Content-type: image/gif\公众);

$heart = imagecreate($width,$height);//创建一张图片

$bg_color = imagecolorallocate($heart,0,0,0);

$red = imagecolorallocate($heart,255,0,0);

for($i=0;$i<=100;$i++){

for($j=0;$j<=100;$j++){

$r = M_PI/50$i (1-sin(M_PI/50$j))40;

$x = $r cos(M_PI/50$j)sin(M_PI/50$i)+$width/2;

$y = -$rsin(M_PI/50$j)+$height/6;

imagesetpixel($heart,$x,$y,$red);

}

}

imagegif($heart);

imagedestroy($heart);

?>

输出效果

感兴趣的你也自己动手试一下把,分享给你心爱的Ta,哈哈!