1 Star 0 Fork 0

ica / ps_0

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
ps1.php 626 Bytes
一键复制 编辑 原始数据 按行查看 历史
Moe-boshi 提交于 2018-07-04 11:32 . 180704 可以拼图了= =
<?php
/**
* Created by PhpStorm.
* User: clkj1
* Date: 2018/7/3
* Time: 16:35
*/
$width = $_GET['width'];
$height = $_GET['height'];
//$width = 1280;
//$height = 720;
sobImg( $width, $height );
function sobImg( $width, $height ) {
$image = imagecreatetruecolor( $width, $height );
$color = imagecolorallocate( $image, 255, 255, 255 );
imagefilledrectangle( $image, 0, 0, $width, $height, $color );
mb_internal_encoding( "UTF-8" );
header( "Content-Type:image/png" );
imagepng( $image );
imagepng( $image, "out/background.png" );
imagedestroy( $image );
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/ica520/ps_0.git
git@gitee.com:ica520/ps_0.git
ica520
ps_0
ps_0
master

搜索帮助

344bd9b3 5694891 D2dac590 5694891