大神在哪?
<?php
? ? $image=imagecreatetruecolor(100,30);
? ? $bgcolor=imagecolorallocate($image,255,255,255);
? ? imagefill($image, 0, 0, $bgcolor);
? ? header('content-type:image/png');
? ? imagepng($image);
? ? imagedestroy($image);
?
為什么預(yù)覽什么都沒有?
<?php
? ? $image=imagecreatetruecolor(100,30);
? ? $bgcolor=imagecolorallocate($image,255,255,255);
? ? imagefill($image, 0, 0, $bgcolor);
? ? header('content-type:image/png');
? ? imagepng($image);
? ? imagedestroy($image);
?
為什么預(yù)覽什么都沒有?
2014-11-26
舉報
2014-11-26
因?yàn)槟愕漠嫴碱伾O(shè)置的是白色的啊,你把$bgcolor=imagecolorallocate($image,255,255,255);這個改成$bgcolor=imagecolorallocate($image,255,0,255);就看到了