我在使用imagewebp将图像转换为webp时遇到麻烦.
我使用以下代码:
$filename = dirname(__FILE__) .'/example.jpg';
$im = imagecreatefromjpeg($filename);
$webp =imagewebp($im, str_replace('jpg', 'webp', $filename));
imagedestroy($im);
var_dump($webp);
$webp返回true,但是当我尝试在Chrome中查看webp图像时,它仅显示空白,但大小正确.如果我改为加载图像并使用PHP设置标头(请参见下文),则会显示出来,但颜色错误(黄色过多).
$im = imagecreatefromwebp('example.webp');
header('Content-Type: image/webp');
imagewebp($im);
imagedestroy($im);
如果我使用命令行转换相同的图像,它将按预期工作.
cwebp -q 100 example.jpg -o example.webp
我正在Ubuntu 14,Apache 2.4.7和PHP 5.5.9-1ubuntu4.4上对此进行测试.
解决方法:
我遇到了同样的问题,我的解决方案是:
$file='hnbrnocz.jpg';
$image= imagecreatefromjpeg($file);
ob_start();
imagejpeg($image,NULL,100);
$cont= ob_get_contents();
ob_end_clean();
imagedestroy($image);
$content = imagecreatefromstring($cont);
imagewebp($content,'images/hnbrnocz.webp');
imagedestroy($content);