> 백엔드 개발 > PHP 튜토리얼 > imagecreatefrompng()가 투명한 영역 대신 검정색 배경을 생성하는 이유는 무엇입니까?

imagecreatefrompng()가 투명한 영역 대신 검정색 배경을 생성하는 이유는 무엇입니까?

Barbara Streisand
풀어 주다: 2024-11-04 07:49:01
원래의
501명이 탐색했습니다.

Why does imagecreatefrompng() Produce a Black Background Instead of a Transparent Area?

imagecreatefrompng()가 투명한 영역 대신 검은색 배경을 생성합니까?

PHP에서 imagecreatefrompng() 함수는 PNG 작업에 일반적으로 사용됩니다. 이미지. 그러나 이 기능을 사용하면 PNG 투명도가 단색 검정색으로 변환될 수 있는 것으로 관찰되었습니다.

이 문제를 해결하려면 imagecreatetruecolor()를 사용하여 새 캔버스를 만든 후 다음 단계를 구현할 수 있습니다.

  1. 검은색 할당: imagecolorallocate() 함수를 사용하여 정수 변수에 검정색을 할당합니다.
  2. 투명도에서 검정색 제거: imagecolortransparent() 함수를 활용하여 검은색을 투명한 색상으로 설정하여 효과적으로 보이지 않게 만듭니다.
  3. 알파 블렌딩 비활성화: 알파 채널을 방지하려면 false 값으로 imagealphablending()을 사용하세요.
  4. 알파 채널 보존 활성화: 전체 투명도 범위를 유지하려면 실제 값으로 Imagesavealpha()를 사용하세요.

By 이러한 수정 사항을 구현하면 PNG 이미지의 알파 채널 정보가 유지되어 검정색 배경으로 변환되지 않습니다. 업데이트된 코드는 다음과 유사합니다.

<code class="php"><?php

// ... Before imagecreatetruecolor()

$dimg = imagecreatetruecolor($width_new, $height_new); // png ?: gif

// start changes
switch ($stype) {

    case 'gif':
    case 'png':
        // integer representation of the color black (rgb: 0,0,0)
        $background = imagecolorallocate($dimg , 0, 0, 0);
        // removing the black from the placeholder
        imagecolortransparent($dimg, $background);

        // turning off alpha blending (to ensure alpha channel information
        // is preserved, rather than removed (blending with the rest of the
        // image in the form of black))
        imagealphablending($dimg, false);

        // turning on alpha channel information saving (to ensure the full range
        // of transparency is preserved)
        imagesavealpha($dimg, true);
        break;

    default:
        break;
}
// end changes

$wm = $w/$nw;
$hm = $h/$nh;

// ...</code>
로그인 후 복사

위 내용은 imagecreatefrompng()가 투명한 영역 대신 검정색 배경을 생성하는 이유는 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿