Table of Contents
php interesting avatar puzzle
Home Backend Development PHP Tutorial php interesting avatar puzzle_PHP tutorial

php interesting avatar puzzle_PHP tutorial

Jul 13, 2016 am 10:19 AM
avatar

php interesting avatar puzzle

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 = &#39;http://www.bkjia.com/uploads/allimg/140830/0421361239-0.png&#39;;
$text = &#39;I-dont-like-manga-...-Why-do-they-have-such-big-eyes? Strange-...-WHAT-WANT-YOU-DO?&#39;;

Header(&#39;Content-Type: image/png&#39;);
imagepng(pixelfuck($url, $text, 1, 6));
Copy after login

The one below is the original image and the other is the processed image.








www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/871192.htmlTechArticlephp Interesting avatar puzzle When researching the GD library of php, I found a piece of code written by others, which is given here. I hope to increase everyone's enthusiasm for php. This code codes the character avatar...
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot Article Tags

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Tutorial to restore win11 default avatar Tutorial to restore win11 default avatar Jan 02, 2024 pm 12:43 PM

Tutorial to restore win11 default avatar

How to change account name and avatar in Win10 - Detailed step-by-step guide How to change account name and avatar in Win10 - Detailed step-by-step guide Jan 14, 2024 pm 01:45 PM

How to change account name and avatar in Win10 - Detailed step-by-step guide

How to implement avatar upload function in Vue How to implement avatar upload function in Vue Nov 07, 2023 am 08:01 AM

How to implement avatar upload function in Vue

How to modify the avatar in discuz How to modify the avatar in discuz Aug 08, 2023 pm 03:53 PM

How to modify the avatar in discuz

How to change boss direct recruitment avatar back to default How to change boss direct recruitment avatar back to default Feb 23, 2024 pm 04:07 PM

How to change boss direct recruitment avatar back to default

How to experience the avatar hiding feature of Win11 Canary 26231 preview version? How to experience the avatar hiding feature of Win11 Canary 26231 preview version? Jun 25, 2024 pm 10:58 PM

How to experience the avatar hiding feature of Win11 Canary 26231 preview version?

Use Python to convert photos into anime-style avatars. Use Python to convert photos into anime-style avatars. Apr 22, 2023 pm 10:22 PM

Use Python to convert photos into anime-style avatars.

How to make a starry sky avatar in PS How to make a starry sky avatar in PS Feb 28, 2024 pm 08:13 PM

How to make a starry sky avatar in PS

See all articles