我正在使用一个脚本来帮助用户上传他们的个人资料图片然后裁剪他们以选择方便的位置 我有PNG&的问题他们没有显示GIF图像 这是裁剪文件代码请修改它,以便能够显示PNG,JPF和GIF图像
<?php
sleep(1);
$url = $_GET['url'];
$type = $_GET['type'];
if ($type='jpg') {
if(file_exists($url) AND preg_match('/^[a-z0-9\/_\-.]+$/i',$url)){
$width = (isset($_GET['width']) AND preg_match('/^[0-9]{2,}$/', $_GET['width'])) ? $_GET['width'] : 300;
$height = (isset($_GET['height']) AND preg_match('/^[0-9]{2,}$/', $_GET['height'])) ? $_GET['height'] : 300;
$left = (isset($_GET['left']) AND is_numeric($_GET['left'])) ? $_GET['left'] : 0;
$top = (isset($_GET['top']) AND is_numeric($_GET['top'])) ? $_GET['top'] : 0;
header ("Content-type: image/jpg");
$src = @imagecreatefromjpeg($url);
$im = @imagecreatetruecolor($width, $height);
imagecopy($im,$src,0,0,-$left,-$top,$width,$height);
imagejpeg($im,"",300);
imagedestroy($im);}}
elseif ($type='png') {
if(file_exists($url) AND preg_match('/^[a-z0-9\/_\-.]+$/i',$url)){
$width = (isset($_GET['width']) AND preg_match('/^[0-9]{2,}$/', $_GET['width'])) ? $_GET['width'] : 300;
$height = (isset($_GET['height']) AND preg_match('/^[0-9]{2,}$/', $_GET['height'])) ? $_GET['height'] : 300;
$left = (isset($_GET['left']) AND is_numeric($_GET['left'])) ? $_GET['left'] : 0;
$top = (isset($_GET['top']) AND is_numeric($_GET['top'])) ? $_GET['top'] : 0;
header ("Content-type: image/png");
$src = @imagecreatefrompng($url);
$im = @imagecreatetruecolor($width, $height);
imagecopy($im,$src,0,0,-$left,-$top,$width,$height);
imagepng($im,"",300);
imagedestroy($im);
}
}
?>
答案 0 :(得分:0)
您必须检查输入文件的格式,然后调用支持的函数。
如果输入文件是jpeg,请拨打imagecreatefromjpeg
和imagejpeg
如果输入文件是png,请拨打imagecreatefrompng
和imagepng
如果输入文件是gif,请致电imagecreatefromjpeg
和imagegif
。