是否可以在我的服务器上安装png图像但是有一个php脚本将它们转换为jpg(并压缩它们)并在查看时缓存它们?
答案 0 :(得分:3)
您可以使用此脚本将PNG图像转换为JPEG图像。
$input_file = "test.png";
$output_file = "test.jpg";
$input = imagecreatefrompng($input_file);
list($width, $height) = getimagesize($input_file);
$output = imagecreatetruecolor($width, $height);
imagecopy($output, $input, 0, 0, 0, 0, $width, $height);
imagejpeg($output, $output_file);
您可以浏览@Alexandre Jasmin Answer。
答案 1 :(得分:1)
是的,有可能,你可以使用短语“ png转换为jpg php ”进行谷歌搜索