php图片压缩成指定大小的方法-PHP问题

资源魔 11 0

一、依照指定的尺寸紧缩图片

/**
     * 依照指定的尺寸紧缩图片
     * @param $source_path  原图门路
     * @param $target_path  保留门路
     * @param $imgWidth     指标宽度
     * @param $imgHeight    指标高度
     * @return bool|string
     */
    function resize_image($source_path,$target_path,$imgWidth,$imgHeight)
    {
        $source_info = getimagesize($source_path);
        $source_mime = $source_info['mime'];
        switch ($source_mime)
        {
            case 'image/gif':
                $source_image = imagecreatefromgif($source_path);
                break;

            case 'image/jpeg':
                $source_image = imagecreatefromjpeg($source_path);
                break;

            case 'image/png':
                $source_image = imagecreatefrompng($source_path);
                break;

            default:
                return false;
                break;
        }
        $target_image     = imagecreatetruecolor($imgWidth, $imgHeight); //创立一个黑白的底图
        imagecopyresampled($target_image, $source_image, 0, 0, 0, 0, $imgWidth, $imgHeight, $source_info[0], $source_info[1]);
        //保留图片到内陆
        $dir = '../'.$target_path. '/'. date("Ymd") . '/';
        if (!is_dir($dir)) {
            mkdir($dir, 0777);
        }

        $fileName = $dir.date("YmdHis").uniqid().'.jpg';
        if(!imagejpeg($target_image,'./'.$fileName)){
            $fileName = '';
        }
        imagedestroy($target_image);
        return $fileName;
    }

二、依照比例裁剪图片

/**
     * 图象裁剪
     * @param $title string 原图门路
     * @param $content string 需求裁剪的宽
     * @param $encode string 需求裁剪的高
     * @param $target_path string 需求保留的门路
     */
    function image_cropper($source_path, $target_width, $target_height, $target_path)
    {
        $source_info     = getimagesize($source_path);
        $source_width     = $source_info[0];
        $source_height     = $source_info[1];
        $source_mime     = $source_info['mime'];
        $source_ratio     = $source_height / $source_width;
        $target_ratio     = $target_height / $target_width;


        if ($source_ratio > $target_ratio) // 源图太高
        {
            $cropped_width = $source_width;
            $cropped_height = $source_width * $target_ratio;
            $source_x = 0;
            $source_y = ($source_height - $cropped_height) / 2;

        }elseif ($source_ratio < $target_ratio){  // 源图过宽

            $cropped_width = $source_height / $target_ratio;
            $cropped_height = $source_height;
            $source_x = ($source_width - $cropped_width) / 2;
            $source_y = 0;
        }else{ // 源图适中

            $cropped_width = $source_width;
            $cropped_height = $source_height;
            $source_x = 0;
            $source_y = 0;
        }

        switch ($source_mime)
        {
            case 'image/gif':
                $source_image = imagecreatefromgif($source_path);
                break;

            case 'image/jpeg':
                $source_image = imagecreatefromjpeg($source_path);
                break;

            case 'image/png':
                $source_image = imagecreatefrompng($source_path);
                break;

            default:
                return false;
                break;
        }

        $target_image = imagecreatetruecolor($target_width, $target_height);
        $cropped_image = imagecreatetruecolor($cropped_width, $cropped_height);

        // 裁剪
        imagecopy($cropped_image, $source_image, 0, 0, $source_x, $source_y, $cropped_width, $cropped_height);
        // 缩放
        imagecopyresampled($target_image, $cropped_image, 0, 0, 0, 0, $target_width, $target_height, $cropped_width, $cropped_height);

        //保留图片到内陆(二者选一)
        $dir = '../../'.$target_path. '/'. date("Ymd") . '/';
        if (!is_dir($dir)) {
            mkdir($dir, 0777);
        }

        $fileName = $dir.date("YmdHis").uniqid().'.jpg';
        if(!imagejpeg($target_image,'./'.$fileName)){
            $fileName = '';
        }
        imagedestroy($target_image);
        return $fileName;
    }

保举相干文章教程:php教程

以上就是php图片紧缩成指定巨细的办法的具体内容,更多请存眷资源魔其它相干文章!

标签: php php教程 php故障解决 php使用问题

抱歉,评论功能暂时关闭!