2012-02-24 118 views
0

我正在尋找一個php函數,可以從灰度或單色圖像像下面獲得漸變彩色濾鏡。我知道如何將像素着色爲靜態顏色,但不知道如何應用這種過濾器。謝謝。php函數從灰度梯度獲取圖像顏色

enter image description here

enter image description here

回答

2

使用該PHP函數:

<?php 
$image = imagecreatefrompng('image1.png'); 
imagealphablending($image, false); 
imagesavealpha($image, true); 
imagefilter($image, IMG_FILTER_COLORIZE, 255, 0, 0); // 0,0,0 (RGB) 
imagepng($image, 'img_filter_colorize_255_0_0.png'); 
imagedestroy($image); 
?> 

然後顯示你的新形象:

<img src="img_filter_colorize_255_0_0.png"> 
+0

真棒!謝謝! – Jaume 2012-02-27 10:28:56