2011-09-19 82 views
0

有什麼方法可以將PHP中的十六進制顏色(#fffff)轉換爲小型的.GIF圖像嗎?在PHP中將十六進制背景顏色轉換爲GIF

+1

是的,有。 - –

+0

@皮卡:共享是關懷那裏,佩卡.. – StealthRT

+0

請參閱:http://stackoverflow.com/questions/1838794/php-image-creation-from-hex-values-in-database – Tim

回答

6

....

<?php 
// create the image 
$im = imagecreatetruecolor(100, 100); 

// fill the image with the color you want 
imagefilledrectangle($im, 0, 0, 99, 99, 0xFFFFFF); 

// set the headers and output the image 
header('Content-Type: image/gif'); 
imagegif($im); 
imagedestroy($im); 
?> 

http://www.php.net/manual/en/function.imagegif.php

+0

爲什麼這會降低投票率?這是一個難以置信的懶惰問題的答案,但它仍然是一個有效的答案 –

+0

:(有人只是不喜歡我 –

+0

嗯,這很容易重置的影響;) –

相關問題