PHP에서 투명한 배경의 PNG 크기를 효과적으로 조정하는 방법
PHP에서 투명한 PNG 이미지의 크기를 조정하는 것은 어려운 작업일 수 있지만 이미지 품질을 유지합니다. 제공하신 코드에서 크기 조정 시 배경색이 검은색으로 변환되는 문제가 발생했습니다. 이 문제를 해결하려면 아래 업데이트된 코드를 따르세요.
$this->image = imagecreatefrompng($filename); imagealphablending($this->image, false); imagesavealpha($this->image, true); $newImage = imagecreatetruecolor($width, $height); // Allocate a new transparent color and enable alpha blending $background = imagecolorallocatealpha($newImage, 255, 255, 255, 127); imagefilledrectangle($newImage, 0, 0, $width, $height, $background); imagealphablending($newImage, true); imagesavealpha($newImage, true); // Resize the image with transparent background preserved imagecopyresampled($newImage, $this->image, 0, 0, 0, 0, $width, $height, $this->getWidth(), $this->getHeight()); $this->image = $newImage; imagepng($this->image, $filename);
주요 변경 사항:
업데이트:
제공된 코드는 불투명도가 0으로 설정된 투명한 배경을 처리합니다. 그러나 불투명도 값이 0에서 100 사이인 이미지의 경우 여전히 검정색 배경이 생성됩니다. 안타깝게도 GD 라이브러리에는 이 사용 사례를 처리할 수 있는 간단한 솔루션이 없습니다.
위 내용은 PHP에서 PNG 크기를 조정할 때 투명성을 유지하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!