返回所缩略图模块的......登陆

所缩略图模块的相关处理

@smash2019-04-08 11:43:47233

<?php

// http://localhost/exa5/thumb_image/thumb_stand.php?w=200&h=200

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

$w = $_GET['w']?$_GET['w']:200;

$h = $_GET['h']?$_GET['h']:200;

$filename = "stand_test_".$w."_".$h.".jpg";//输出到的位置

$loc_img='test.jpg';//本地图片

image_resize( $loc_img,$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;

    }

}

?>



最新手记推荐

• 用composer安装thinkphp框架的步骤• 省市区接口说明• 用thinkphp,后台新增栏目• 管理员添加编辑删除• 管理员添加编辑删除

全部回复(0)我要回复

暂无评论~
  • 取消回复发送