gpt4 book ai didi

php - fatal error : Paletter image not supported by webp

转载 作者:行者123 更新时间:2023-12-04 14:34:44 26 4
gpt4 key购买 nike

我正在保存 png 图片 webp使用以下代码格式化,但有时会显示

Fatal error: Paletter image not supported by webp



所以,请给我建议
$im = imagecreatetruecolor(120, 20); 

$text_color = imagecolorallocate($im, 128, 128, 128);

$img = imagecreatefrompng('l2.png');

imagestring($img,5, 5,5,'abc',$text_color);

// Save the image

imagewebp($img, 'images/l2.webp');

// Free up memory

imagedestroy($img);

最佳答案

.webp中创建图像之前格式,将您的文件转换为 RGB

$img = imagecreatefrompng('l2.png'); 
imagepalettetotruecolor($img);

同样在您的情况下,您可以保存 png 文件的 alpha channel
$img = imagecreatefrompng('l2.png'); 
imagepalettetotruecolor($img);
imagealphablending($img, true);
imagesavealpha($img, true);

关于php - fatal error : Paletter image not supported by webp,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39292617/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com