调整图像大小不适用于 png 图像

发布于 2024-09-04 16:52:28 字数 1340 浏览 4 评论 0原文

它不适用于 png 创建了一个拇指 png 但没有数据,比如空数据:D 使用 jpg , jpeg 仍然可以正常工作,没有错误 为什么 ?

function thumbnail($pathtoFile,$thumWidth,$pathtoThumb) {

    //infor of image
    $infor = pathinfo($pathtoFile);

    // Setting the resize parameters 
    list($width, $height) = getimagesize($pathtoFile); 

    $modwidth = $thumWidth; 
    $modheight = floor( $height * ( $modwidth / $width )); 


    // Resizing the Image 
    $thumb = imagecreatetruecolor($modwidth, $modheight);

    switch(strtolower($infor['extension'])) {
        case 'jpeg':
        case 'jpg':
            $image = imagecreatefromjpeg($pathtoFile); 
            break;

        case 'gif':
            $image = imagecreatefromgif($pathtoFile); 
            break;

        case 'png':
            $image = imagecreatefrompng($pathtoFile); 
            break;
    }

    imagecopyresampled($thumb, $image, 0, 0, 0, 0, $modwidth,
            $modheight, $width, $height);

    switch(strtolower($infor['extension'])) {
        case 'jpeg':
        case 'jpg':
            imagejpeg($thumb,$pathtoThumb, 70); 
            break;
        case 'gif':
            imagegif($thumb,$pathtoThumb, 70); 
            break;
        case 'png':

            imagepng($thumb,$pathtoThumb, 70); 
            break;
    }

    //destroy tmp
    imagedestroy($thumb);
}

it not work with png
created a thumb png but haven't data , like null data :D
with jpg , jpeg still working without error
why ?

function thumbnail($pathtoFile,$thumWidth,$pathtoThumb) {

    //infor of image
    $infor = pathinfo($pathtoFile);

    // Setting the resize parameters 
    list($width, $height) = getimagesize($pathtoFile); 

    $modwidth = $thumWidth; 
    $modheight = floor( $height * ( $modwidth / $width )); 


    // Resizing the Image 
    $thumb = imagecreatetruecolor($modwidth, $modheight);

    switch(strtolower($infor['extension'])) {
        case 'jpeg':
        case 'jpg':
            $image = imagecreatefromjpeg($pathtoFile); 
            break;

        case 'gif':
            $image = imagecreatefromgif($pathtoFile); 
            break;

        case 'png':
            $image = imagecreatefrompng($pathtoFile); 
            break;
    }

    imagecopyresampled($thumb, $image, 0, 0, 0, 0, $modwidth,
            $modheight, $width, $height);

    switch(strtolower($infor['extension'])) {
        case 'jpeg':
        case 'jpg':
            imagejpeg($thumb,$pathtoThumb, 70); 
            break;
        case 'gif':
            imagegif($thumb,$pathtoThumb, 70); 
            break;
        case 'png':

            imagepng($thumb,$pathtoThumb, 70); 
            break;
    }

    //destroy tmp
    imagedestroy($thumb);
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

送你一个梦 2024-09-11 16:52:28

它不起作用,因为 imagepng() 第三个参数必须介于 0 和 9 之间表示png图像的压缩级别(0表示不压缩)。 70 不是有效值。

imagepng($thumb, $pathtoThumb, 9);

另外, imagegif() 仅接受两个参数。从技术上讲,您的电话应该是:

imagegif($thumb, $pathtoThumb);

It isn't working because imagepng() third argument must be between 0 and 9. It indicates the compression level of the png image (0 being no compression). 70 is not a valid value.

imagepng($thumb, $pathtoThumb, 9);

Also, imagegif() only accepts two arguments. Technically, your call should be:

imagegif($thumb, $pathtoThumb);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文