Home > php教程 > PHP源码 > body text

制作刷新可以改变的图片。

PHP中文网
Release: 2016-05-25 17:07:27
Original
1278 people have browsed it

代码

<?php
    header("content-type:image/jpeg");
    $img = imagecreatefromjpeg(&#39;http://omegacoleman-occnimages.stor.sinaapp.com/notepad.jpg&#39;);
    $color = imagecolorallocate($img, 0, 0, 0);
    $txt_bleach = 
    "故事的主角黑崎一护是个看似单薄却满身\n".
    "热血少年,并且拥有能看见灵的体质。一\n".
    "天晚上,死神朽木露琪亚被他一脚踢到墙\n".
    "角并满脸惊疑地望着他问“你能看见我?”\n".
    "时序幕才这样被他正式地踢开……";
    $txt_hyouka = 
    "在其他正要展开玫瑰色高中生活的学生当\n".
    "中,本作的男主角却是一个灰色的节能主\n".
    "义者,没有必要的事都不会主动去做,因\n".
    "为不想后悔,被人说他疏离、厌世也没所\n".
    "谓,因为这就是他的作风。这样的他,因\n".
    "为姐姐的命令而进入了濒临废社的古籍研\n".
    "究社,虽然好不容易招到了四名新社员,\n".
    "却又卷入了三十二年前社长突然逃学的谜\n".
    "团之中……";
    $txt_another = 
    "26年前夜见山北中学的三年三班里,曾经\n".
    "有一位名叫见崎的学生。她不仅是位运动\n".
    "天才还是个优等生,个性平易近人广受众\n".
    "人喜爱的她却在某日突然猝死,极度悲伤\n".
    "的同班同学们无法接受这件事实,众人决\n".
    "定到毕业之前仍想像见崎还活著般度过每\n".
    "一天……";
    $txt_gc = 
    "本作的男主角樱满集,17岁的高校二年生\n".
    ",他的右手却寄宿著特殊的能力王之能力\n".
    "能从同伴间取出反映人格的物质,并将他\n".
    "人的能力据为己用。被取出的物质叫做虚\n".
    "空,除了可以是大剑,也可以是乐器或相\n".
    "机。虽然集一直隐藏着自己的能力,并尽\n".
    "量避免为其他人制造麻烦,但当他遇上女\n".
    "主角后,他的人生便从此转变了……";
    $all_txt = array($txt_gc, $txt_another, $txt_hyouka, $txt_bleach);
    $txt = $all_txt[array_rand($all_txt)];
    imagettftext($img, 15, 0, 80, 120, $color, "simhei.ttf", $txt);
    imagejpeg($img);
Copy after login
source:php.cn
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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template