图像裁剪脚本现在显示断开的链接

时间:2015-05-08 19:18:42

标签: php image-processing

我多年来一直在使用以下PHP脚本。突然,几周前,它停止了工作。它创建的图像反过来嵌入到网页中,显示为断开的链接。如果我删除内容类型行(发送文本),图像文本似乎正在发送。我有一个单独的脚本来获取图像,使用此脚本来裁剪它们,然后在本地保存输出。我查看了已保存的.png文件。它们都有一个文件大小(30k左右)。

我担心我的托管服务已更新PHP并破坏某些内容(再次)。任何人都知道发生了什么事?

#!/usr/bin/php -q
<?
$w=$_GET['w'];
$h=isset($_GET['h'])?$_GET['h']:$w;
$x=isset($_GET['x'])?$_GET['x']:0;
$y=isset($_GET['y'])?$_GET['y']:0;
$filename="http://".$_GET['src'];
//echo $filename;
$result_array = getimagesize($filename);
//exit();

if ($result_array !== false) {
    $mime_type = $result_array['mime'];
    switch($mime_type) {
        case "image/jpeg":
            header('Content-type: image/jpeg');
            $image = imagecreatefromjpeg($filename); 
            break;
        case "image/gif":
            header('Content-type: image/gif');
            $image = imagecreatefromgif($filename); 
            break;
        case "image/png":
            header('Content-type: image/png');
            $image = imagecreatefrompng($filename); 
            break;
        case "image/bmp":
            header('Content-type: image/bmp');
            $image = imagecreatefrombmp($filename); 
            break;
        default:
            echo "Unsupported image type";
    }

    $resized = imagecreatetruecolor(1200, 1200);
    imagecopyresampled($resized, $image, 0, 0, 0, 0, 1200, 1200, imagesx($image), imagesy($image));
    $crop = imagecreatetruecolor($w,$h);
    imagecopy ( $crop, $resized, 0, 0, $x, $y, $w, $h );
    imagepng($crop);
} else {
    echo "file is not a valid image file";
} 

?>

1 个答案:

答案 0 :(得分:1)

啊,旧的“如果你问一个关于堆栈溢出的问题,你会在一分钟之后找出问题”格言再次成真。

几乎可以肯定我的主机更新了PHP。由于某种原因,行#!/usr/bin/php -q被添加到PNG文件的开头。我删除了那一行,一切都还活着。