Home > Article > Backend Development > php interesting avatar puzzle_PHP tutorial
When I was researching the GD library of PHP, I found a piece of code written by others. I am giving it here in the hope of increasing everyone's enthusiasm for PHP. This code mosaics the character's avatar with code, which looks interesting.
function pixelfuck($url, $chars='ewk34543§G§$§$Tg34g4g', $shrpns=1, $size=4,$weight=2) { list($w, $h, $type) = getimagesize($url); $resource = imagecreatefromstring(file_get_contents($url)); $img = imagecreatetruecolor($w*$size,$h*$size); $cc = strlen($chars); for($y=0;$y <$h;$y+=$shrpns) for($x=0;$x <$w;$x+=$shrpns) imagestring($img,$weight,$x*$size,$y*$size, $chars{@++$p%$cc}, imagecolorat($resource, $x, $y)); return $img; } $url = 'http://www.bkjia.com/uploads/allimg/140830/0421361239-0.png'; $text = 'I-dont-like-manga-...-Why-do-they-have-such-big-eyes? Strange-...-WHAT-WANT-YOU-DO?'; Header('Content-Type: image/png'); imagepng(pixelfuck($url, $text, 1, 6));
The one below is the original image and the other is the processed image.