PHP调整PNG的大小会导致文件损坏

问题描述 投票:0回答:2

我有一个PHP脚本,可将.jpg,.gif和.png文件的大小调整为边框。

            $max_width = 500;
            $max_height = 600;
            $filetype = $_FILES["file"]["type"];
            $source_pic = "img/" . $idnum;
            if($filetype == "image/jpeg")
            {
                $src = imagecreatefromjpeg($source_pic);                    
            } else if($filetype == "image/png")
            {
                $src = imagecreatefrompng($source_pic);                 
            } else if($filetype == "image/gif")
            {
                $src = imagecreatefromgif($source_pic);
            }
            list($width,$height)=getimagesize($source_pic);
            $x_ratio = $max_width / $width;
            $y_ratio = $max_height / $height;

            if( ($width <= $max_width) && ($height <= $max_height) )
            {
                $tn_width = $width;
                $tn_height = $height;
            } else if (($x_ratio * $height) < $max_height)
            {
                $tn_height = ceil($x_ratio * $height);
                $tn_width = $max_width;
            } else {
                $tn_width = ceil($y_ratio * $width);
                $tn_height = $max_height;
            }

            $tmp = imagecreatetruecolor($tn_width,$tn_height);
            imagecopyresampled($tmp,$src,0,0,0,0,$tn_width, $tn_height,$width,$height);
            $destination_pic = "img/thumbs/" . $idnum . "thumb";
            if($filetype == "image/jpeg")
            {
                imagejpeg($tmp,$destination_pic,80);
            } else if($filetype == "image/png")
            {
                imagepng($tmp,$destination_pic,80);
            } else if($filetype == "image/gif")
            {
                imagegif($tmp,$destination_pic,80);
            }
            imagedestroy($src);
            imagedestroy($tmp);

该脚本适用于jpeg和gif,但在png上运行时,文件将被破坏。

使用png时我需要使用什么特别的东西吗?我从未在PHP中使用过这类工具,所以我对此不太熟悉。

php upload resize png
2个回答
1
投票

首先,请检查您的gd库中是否启用了PNG支持。您可以从phpinfo获取此信息,其功能为phpinfo()

您无法将$quality的参数imagepng()设置为80,只能设置1到9。最好将其删除。

imagepng($tmp, $destination_pic);

如果您在透明度方面遇到问题,请查看以下功能:

imagealphablending();
imagesavealpha();

-1
投票

您的服务器是否启用了PHP支持?


-1
投票

您的服务器是否启用了PHP支持?

© www.soinside.com 2019 - 2024. All rights reserved.