PHP; işlevi imagerotate arka plan rengi seçeneği için kullanılır ne biçim ().
$color = "???????";
imagerotate($image, $degrees, $color);
Ben denedim:
$color = "#FFFFFF";
$color = "255255255";
Ben imagecolorallocate bunu belirtmek zorunda düşünüyorum ():
// sets some colors
$white = imagecolorallocate($im, 255, 255, 255);
$black = imagecolorallocate($im, 0, 0, 0);
// hexadecimal way
$white = imagecolorallocate($im, 0xFF, 0xFF, 0xFF);
$black = imagecolorallocate($im, 0x00, 0x00, 0x00);
ile the man pages
Bu previouslly imagecolorallocate()
ya da imagecolorallocatealpha()
ile istenen $color
ayırmak gerekir.