imagecreatetruecolor 改背景色

php教程11年前 (2014-06-19)17820
magecreatetruecolor 更改黑色背景的方法:
看到网上有人因为不会更改 imagecreatetruecolor 创建的真色彩图片的黑色背景,转而使用 imagecreate 函数创建,其实 imagecreatetruecolor 的背景可以使用imagefill函数填充的。


Example #1  imagefill() 例子

<?php

$im = imagecreatetruecolor(100, 100);

// 将背景设为红色
$red = imagecolorallocate($im, 255, 0, 0);
imagefill($im, 0, 0, $red);

header('Content-type: image/png');
imagepng($im);
imagedestroy($im);
?>

“imagecreatetruecolor 改背景色” 的相关文章

发表评论

访客

看不清,换一张

◎欢迎参与讨论,请在这里发表您的看法和观点。