簡単な方法で透明な背景を持つロゴを作成したいので、最初のピクセルを取り、その色をすべての画像に透明に設定することにしました。ほとんどの場合。
問題は、透明な黒に着色されているピクセルです。これは私のコードです:
$im = $this->loadImage($targetFile);
$this->replaceImageColor($im, imagecolorat($im, 0, 0), imageColorAllocateAlpha($im, 255, 255, 255, 127));
imagepng($im, 'test.png');
そして私のクラス関数:
function loadImage($imagePath) {
$resource = false;
if( strstr($imagePath, '.jpg') || strstr($imagePath, '.jpeg') )
$resource = @imagecreatefromjpg($imagePath);
if( strstr($imagePath, '.png') )
$resource = @imagecreatefrompng($imagePath);
return $resource;
}
function replaceImageColor($img, $from, $to) {
// pixel by pixel grid.
for ($y = 0; $y < imagesy($img); $y++) {
for ($x = 0; $x < imagesx($img); $x++) {
// find hex at x,y
$at = imagecolorat($img, $x, $y);
// set $from to $to if hex matches.
if ($at == $from)
imagesetpixel($img, $x, $y, $to);
}
}
}