會(huì)在body中加入黑色背景
<?php
? ? $image = imagecreatetruecolor(100, 30);
? ? header('content-type:image/png');
? ? imagepng($image);
? ? imagedestroy($image);
<?php
? ? $image = imagecreatetruecolor(100, 30);
? ? header('content-type:image/png');
? ? imagepng($image);
? ? imagedestroy($image);
2017-03-29
舉報(bào)
2019-04-09
(PHP 4 >= 4.0.6, PHP 5, PHP 7)
imagecreatetruecolor?—?新建一個(gè)真彩色圖像
說(shuō)明
imagecreatetruecolor?(?int?
$width
?,?int?$height
?) :?resourceimagecreatetruecolor()?返回一個(gè)圖像標(biāo)識(shí)符,代表了一幅大小為?
x_size
?和?y_size
?的黑色圖像。2017-04-07
imagecreatetruecolor默認(rèn)底色為黑色