PHP 图片上传生成缩略图

发布网友 发布时间:2022-04-28 05:21

我来回答

4个回答

懂视网 时间:2022-04-28 09:42

php生成缩略图的方法:首先创建一个PHP示例文件;然后通过“header("content-type:image/png");”设定生成图片格式;最后通过“image_resize”方法按指定大小生成缩略图即可。

推荐:《PHP视频教程》

PHP生成图片缩略图的三种方法:

1、把大图缩略到缩略图指定的范围内,可能有留白(原图细节不丢失)

2、把大图缩略到缩略图指定的范围内,不留白(原图会居中缩放,把超出的部分裁剪掉)

3、把大图缩略到缩略图指定的范围内,不留白(原图会剪切掉不符合比例的右边和下边)

下面是代码:

<?php
// +----------------------------------------------------------------------
// | 把大图缩略到缩略图指定的范围内,可能有留白(原图细节不丢失)
// +---------------------------------------------------------------------- 
$w = $_GET['w']?$_GET['w']:200;
$h = $_GET['h']?$_GET['h']:200;
$filename = "stand_test_".$w."_".$h.".jpg";
image_resize( 'test.jpg',$filename, $w, $h);
header("content-type:image/png");//设定生成图片格式
echo file_get_contents($filename);
 
function image_resize($f, $t, $tw, $th){
// 按指定大小生成缩略图,而且不变形,缩略图函数
 $temp = array(1=>'gif', 2=>'jpeg', 3=>'png');
 
 list($fw, $fh, $tmp) = getimagesize($f);
 
 if(!$temp[$tmp]){
  return false;
 }
 $tmp = $temp[$tmp];
 $infunc = "imagecreatefrom$tmp";
 $outfunc = "image$tmp";
 
 $fimg = $infunc($f);
 
 // 使缩略后的图片不变形,并且在 缩略图宽高范围内
 if($fw/$tw > $fh/$th){
  $th = $tw*($fh/$fw);
 }else{
  $tw = $th*($fw/$fh);
 }
 
 $timg = imagecreatetruecolor($tw, $th);
 imagecopyresampled($timg, $fimg, 0,0, 0,0, $tw,$th, $fw,$fh);
 if($outfunc($timg, $t)){
  return true;
 }else{
  return false;
 }
}
?>

<?php
// +----------------------------------------------------------------------
// | 把大图缩略到缩略图指定的范围内,不留白(原图会居中缩放,把超出的部分裁剪掉)
// +----------------------------------------------------------------------
$w = $_GET['w']?$_GET['w']:200;
$h = $_GET['h']?$_GET['h']:200;
$filename = "cut_test_".$w."_".$h.".jpg";
image_resize( 'test.jpg',$filename, $w, $h);
header("content-type:image/png");//设定生成图片格式
echo file_get_contents($filename);
 
// 按指定大小生成缩略图,而且不变形,缩略图函数
function image_resize($f, $t, $tw, $th){
 $temp = array(1=>'gif', 2=>'jpeg', 3=>'png');
 list($fw, $fh, $tmp) = getimagesize($f);
 if(!$temp[$tmp]){
  return false;
 }
 $tmp = $temp[$tmp];
 $infunc = "imagecreatefrom$tmp";
 $outfunc = "image$tmp";
 
 $fimg = $infunc($f);
// $fw = 10;
// $fh = 4;
// $tw = 4;
// $th = 2;
 // 把图片铺满要缩放的区域
 if($fw/$tw > $fh/$th){
  $zh = $th;
  $zw = $zh*($fw/$fh);
  $_zw = ($zw-$tw)/2;
 }else{
  $zw = $tw;
  $zh = $zw*($fh/$fw);
  $_zh = ($zh-$th)/2;
 }
// echo $zw."<br>"; 
// echo $zh."<br>"; 
// echo $_zw."<br>"; 
// echo $_zh."<br>"; 
// exit;
 $zimg = imagecreatetruecolor($zw, $zh);
 // 先把图像放满区域
 imagecopyresampled($zimg, $fimg, 0,0, 0,0, $zw,$zh, $fw,$fh);
 
 // 再截取到指定的宽高度
 $timg = imagecreatetruecolor($tw, $th);
 imagecopyresampled($timg, $zimg, 0,0, 0+$_zw,0+$_zh, $tw,$th, $zw-$_zw*2,$zh-$_zh*2);
// 
 if($outfunc($timg, $t)){
  return true;
 }else{
  return false;
 }
}
 
?>

<?php
// +----------------------------------------------------------------------
// | 把大图缩略到缩略图指定的范围内,不留白(原图会剪切掉不符合比例的右边和下边)
// +----------------------------------------------------------------------
$w = $_GET['w']?$_GET['w']:200;
$h = $_GET['h']?$_GET['h']:200;
$filename = "strict_test_".$w."_".$h.".jpg";
image_resize( 'test.jpg',$filename, $w, $h);
header("content-type:image/png");//设定生成图片格式
echo file_get_contents($filename);
 
function image_resize($f, $t, $tw, $th){
// 按指定大小生成缩略图,而且不变形,缩略图函数
 $temp = array(1=>'gif', 2=>'jpeg', 3=>'png');
 
 list($fw, $fh, $tmp) = getimagesize($f);
 
 if(!$temp[$tmp]){
  return false;
 }
 $tmp = $temp[$tmp];
 $infunc = "imagecreatefrom$tmp";
 $outfunc = "image$tmp";
 
 $fimg = $infunc($f);
 
 if($fw/$tw > $fh/$th){
  $fw = $tw * ($fh/$th);
 }else{
  $fh = $th * ($fw/$tw);
 }
 
 $timg = imagecreatetruecolor($tw, $th);
 imagecopyresampled($timg, $fimg, 0,0, 0,0, $tw,$th, $fw,$fh);
 if($outfunc($timg, $t)){
  return true;
 }else{
  return false;
 }
}
?>

热心网友 时间:2022-04-28 06:50

//2014年3月5日15:08:02 因为需要做缩略图,所以改用thinkphp来做上传,它支持时间戳命名,方便命名,以及更名
//这是以前百度到的,然后使用的缩略图代码,需要cg库支持

    /**
     * 生成缩略图
     * @author yangguo0903@163.com
     * @param string     源图绝对完整地址{带文件名及后缀名}
     * @param string     目标图绝对完整地址{带文件名及后缀名}
     * @param int        缩略图宽{0:此时目标高度不能为0,目标宽度为源图宽*(目标高度/源图高)}
     * @param int        缩略图高{0:此时目标宽度不能为0,目标高度为源图高*(目标宽度/源图宽)}
     * @param int        是否裁切{宽,高必须非0}
     * @param int/float  缩放{0:不缩放, 0<this<1:缩放到相应比例(此时宽高*和裁切均失效)}
     * @return boolean
     */
    function fileext($file)
    {
        return strtolower(pathinfo($file, PATHINFO_EXTENSION));
    }

    function img2thumb($src_img, $dst_img, $width = 75, $height = 75, $cut = 0, $proportion = 0)
    {
        if(!is_file($src_img))
        {
            return false;
        }
        $ot = $this->fileext($dst_img);
        $otfunc = 'image' . ($ot == 'jpg' ? 'jpeg' : $ot);
        $srcinfo = getimagesize($src_img);
        $src_w = $srcinfo[0];
        $src_h = $srcinfo[1];
        $type  = strtolower(substr(image_type_to_extension($srcinfo[2]), 1));
        $createfun = 'imagecreatefrom' . ($type == 'jpg' ? 'jpeg' : $type);
     
        $dst_h = $height;
        $dst_w = $width;
        $x = $y = 0;
     
        /**
         * 缩略图不超过源图尺寸(前提是宽或高只有一个)
         */
        if(($width> $src_w && $height> $src_h) || ($height> $src_h && $width == 0) || ($width> $src_w && $height == 0))
        {
            $proportion = 1;
        }
        if($width> $src_w)
        {
            $dst_w = $width = $src_w;
        }
        if($height> $src_h)
        {
            $dst_h = $height = $src_h;
        }
     
        if(!$width && !$height && !$proportion)
        {
            return false;
        }
        if(!$proportion)
        {
            if($cut == 0)
            {
                if($dst_w && $dst_h)
                {
                    if($dst_w/$src_w> $dst_h/$src_h)
                    {
                        $dst_w = $src_w * ($dst_h / $src_h);
                        $x = 0 - ($dst_w - $width) / 2;
                    }
                    else
                    {
                        $dst_h = $src_h * ($dst_w / $src_w);
                        $y = 0 - ($dst_h - $height) / 2;
                    }
                }
              else if($dst_w xor $dst_h)
                {
                    if($dst_w && !$dst_h)  //有宽无高
                    {
                        $propor = $dst_w / $src_w;
                        $height = $dst_h  = $src_h * $propor;
                    }
                    else if(!$dst_w && $dst_h)  //有高无宽
                    {
                        $propor = $dst_h / $src_h;
                        $width  = $dst_w = $src_w * $propor;
                    }
                }
            }
            else
            {
                if(!$dst_h)  //裁剪时无高
                {
                    $height = $dst_h = $dst_w;
                }
                if(!$dst_w)  //裁剪时无宽
                {
                    $width = $dst_w = $dst_h;
                }
                $propor = min(max($dst_w / $src_w, $dst_h / $src_h), 1);
                $dst_w = (int)round($src_w * $propor);
                $dst_h = (int)round($src_h * $propor);
                $x = ($width - $dst_w) / 2;
                $y = ($height - $dst_h) / 2;
            }
        }
        else
        {
            $proportion = min($proportion, 1);
            $height = $dst_h = $src_h * $proportion;
            $width  = $dst_w = $src_w * $proportion;
        }
     
        $src = $createfun($src_img);
        $dst = imagecreatetruecolor($width ? $width : $dst_w, $height ? $height : $dst_h);
        $white = imagecolorallocate($dst, 255, 255, 255);
        imagefill($dst, 0, 0, $white);
     
        if(function_exists('imagecopyresampled'))
        {
            imagecopyresampled($dst, $src, $x, $y, 0, 0, $dst_w, $dst_h, $src_w, $src_h);
        }
        else
        {
            imagecopyresized($dst, $src, $x, $y, 0, 0, $dst_w, $dst_h, $src_w, $src_h);
        }
        $otfunc($dst, $dst_img);
        imagedestroy($dst);
        imagedestroy($src);
        return true;
    }

热心网友 时间:2022-04-28 08:08

先标记下,稍后上传完整代码

你可以选择是否保留原图

//如果你不想要原图,就把下面两行删掉


<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<?php
$smalladdrname="slt/";//缩略图存放目录位置
$RESIZEWIDTH='200';//定义最大宽
$RESIZEHEIGHT='200';//定义最大高


function ResizeImage($im,$maxwidth,$maxheight,$name){
$width = imagesx($im);
$height = imagesy($im);
if(($maxwidth && $width > $maxwidth) || ($maxheight && $height > $maxheight)){
if($maxwidth && $width > $maxwidth){
$widthratio = $maxwidth/$width;
$RESIZEWIDTH=true;
}
if($maxheight && $height > $maxheight){
$heightratio = $maxheight/$height;
$RESIZEHEIGHT=true;
}
if($RESIZEWIDTH && $RESIZEHEIGHT){
if($widthratio < $heightratio){
$ratio = $widthratio;
}else{
$ratio = $heightratio;
}
}elseif($RESIZEWIDTH){
$ratio = $widthratio;
}elseif($RESIZEHEIGHT){
$ratio = $heightratio;
}
$newwidth = $width * $ratio;
$newheight = $height * $ratio;
if(function_exists("imagecopyresampled")){
$newim = imagecreatetruecolor($newwidth, $newheight);
imagecopyresampled($newim, $im, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);
}else{
$newim = imagecreate($newwidth, $newheight);
imagecopyresized($newim, $im, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);
}
ImageJpeg ($newim,$smalladdrname.$name.".jpg");
ImageDestroy ($newim);
}else{
ImageJpeg ($im,$smalladdrname.$name.".jpg");
}
}

 

if($_FILES['image']['size']){
if($_FILES['image']['type'] == "image/pjpeg" || $_FILES['image']['type'] == "image/jpeg"){
$im = imagecreatefromjpeg($_FILES['image']['tmp_name']);
}elseif($_FILES['image']['type'] == "image/x-png"  || $_FILES['image']['type'] == "image/png"){
$im = imagecreatefrompng($_FILES['image']['tmp_name']);
}elseif($_FILES['image']['type'] == "image/gif"){
$im = imagecreatefromgif($_FILES['image']['tmp_name']);
}
if($im){

//生成新的文件名
$basename = time().rand(10,99);
$newname = $smalladdrname.'slt_'.$basename.'.jpg';
//如果你不想要原图,就把下面两行删掉
$newname_yt = $smalladdrname.'yt_'.$basename.'.jpg';
copy($_FILES['image']['tmp_name'],$newname_yt);//原图

if(file_exists($newname.".jpg")){

unlink($newname.".jpg");
}

ResizeImage($im,$RESIZEWIDTH,$RESIZEHEIGHT,$newname);
ImageDestroy ($im);
echo '缩略图生成成功!位置在 '.$newname.'<hr />';
}else{
    echo '未知错误';
}
}
?>
<form action="" method="post" enctype="multipart/form-data" name="form1" id="form1">
  图片
  <label>
  <input name="image" type="file" id="image" />
  </label>
  <p>
    <label>
    <input type="submit" name="Submit" value="提交" />
    </label>
  </p>
</form>

追问能不能生成 大小不同的两个缩略图

追答可以的,这个修改下代码就可以了

热心网友 时间:2022-04-28 09:43

thinkphp框架有图片上传类,很好用的,你是用什么开发的

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com