源来页 公告 登陆

值得研究的彩色文字

作曲 @Ta
2018-09-09 04:15

<?php
header('content-type:image/jpeg');
$string = $_GET['word'];
$size = 20; //图片尺寸,单位px
$fontsize = 14; //字体大小,单位px(小于图片尺寸)
$fontfile = 'kaiti.ttf'; //字体文件路径
$x = floor(($size - $fontsize) / 4);
$y = ceil(($size + $fontsize) / 2);
$image = imagecreatetruecolor($size, $size);
$white = imagecolorallocate($image, 255, 255, 255);
imagefill($image, 0, 0, $white);
$color = imagecolorallocate($image, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));
imagettftext($image, $fontsize, 0, $x, $y, $color, $fontfile, $string);
imagejpeg($image);
imagedestroy($image);

来自虎绿林的一位小伙伴的分享
阅:2372 发表于2018-09-09 04:15
#php源码
评论:
作曲 @Ta
2018-09-09 04:22


返回源来页/返回首页


天合之作 曲在人意

心灵鸡汤:
      

®2019-2024 all power by Zlproject3.7
川公网安备 51192202000151号
蜀ICP备2021014921号-2 首页 #top

本网站由提供CDN加速/云储存服务

天合之作 曲在人意