PHP获取远程图片并调整图像大小(转)

简介: 允许上传的文件类型为:  如何联系我:【万里虎】www.bravetiger.cn【QQ】3396726884 (咨询问题100元起,帮助解决问题500元起)【博客】http://www.cnblogs.com/kenshinobiy/
<?php
/**
*
*函数:调整图片尺寸或生成缩略图
*修改:2013-2-15
*返回:True/False
*参数:
*   $Image   需要调整的图片(含路径)
*   $Dw=450   调整时最大宽度;缩略图时的绝对宽度
*   $Dh=450   调整时最大高度;缩略图时的绝对高度
*   $Type=1   1,调整尺寸; 2,生成缩略图
*/

$phtypes=array('img/gif', 'img/jpg', 'img/jpeg', 'img/bmp', 'img/pjpeg', 'img/x-png');

function compressImg($Image,$Dw,$Dh,$Type){
    echo $Image;
    IF(!file_exists($Image)){
        echo "不存在图片";
        return false;
    }
    echo "存在图片";
    // 如果需要生成缩略图,则将原图拷贝一下重新给$Image赋值(生成缩略图操作)
    // 当Type==1的时候,将不拷贝原图像文件,而是在原来的图像文件上重新生成缩小后的图像(调整尺寸操作)
    IF($Type!=1){
        copy($Image,str_replace(".","_x.",$Image));
        $Image=str_replace(".","_x.",$Image);
    }
    // 取得文件的类型,根据不同的类型建立不同的对象
    $ImgInfo=getimagesize($Image);
    Switch($ImgInfo[2]){
        case 1:
            $Img =@imagecreatefromgif($Image);
            break;
        case 2:
            $Img =@imagecreatefromjpeg($Image);
            Break;
        case 3:
            $Img =@imagecreatefrompng($Image);
            break;
    }
    // 如果对象没有创建成功,则说明非图片文件
    IF(Empty($Img)){
        // 如果是生成缩略图的时候出错,则需要删掉已经复制的文件
        IF($Type!=1){
            unlink($Image);
        }
        return false;
    }
    // 如果是执行调整尺寸操作则
    IF($Type==1){
        $w=ImagesX($Img);
        $h=ImagesY($Img);
        $width = $w;
        $height = $h;
        IF($width>$Dw){
            $Par=$Dw/$width;
            $width=$Dw;
            $height=$height*$Par;
            IF($height>$Dh){
                $Par=$Dh/$height;
                $height=$Dh;
                $width=$width*$Par;
            }
        } ElseIF($height>$Dh) {
            $Par=$Dh/$height;
            $height=$Dh;
            $width=$width*$Par;
            IF($width>$Dw){
                $Par=$Dw/$width;
                $width=$Dw;
                $height=$height*$Par;
            }
        } Else {
            $width=$width;
            $height=$height;
        }
        $nImg =ImageCreateTrueColor($width,$height);// 新建一个真彩色画布
        ImageCopyReSampled($nImg,$Img,0,0,0,0,$width,$height,$w,$h);// 重采样拷贝部分图像并调整大小
        ImageJpeg($nImg,$Image);// 以JPEG格式将图像输出到浏览器或文件
        return true;
    } Else {// 如果是执行生成缩略图操作则
        $w=ImagesX($Img);
        $h=ImagesY($Img);
        $width = $w;
        $height = $h;
        $nImg =ImageCreateTrueColor($Dw,$Dh);
        IF($h/$w>$Dh/$Dw){// 高比较大
            $width=$Dw;
            $height=$h*$Dw/$w;
            $IntNH=$height-$Dh;
            ImageCopyReSampled($nImg, $Img, 0, -$IntNH/1.8, 0, 0, $Dw, $height, $w, $h);
        } Else {// 宽比较大
            $height=$Dh;
            $width=$w*$Dh/$h;
            $IntNW=$width-$Dw;
            ImageCopyReSampled($nImg, $Img,-$IntNW/1.8,0,0,0, $width, $Dh, $w, $h);
        }
        ImageJpeg($nImg,$Image);
        return true;
    }
};
?>

<?php
//网络图片路径
$imgPath = 'http://www.lesohome.com/phone/compress-img/251139474ba926db3d7850.jpg';
//$imgPath = "http://www.lesohome.com/userfiles/image/20111125/251139474ba926db3d7850.jpg";
$tempPath = str_replace('http://www.lesohome.com/', '', $imgPath);//替换换行字符
$name = strrchr($tempPath, "/");
$path = str_replace($name, '', $tempPath);//替换换行字符

/**
 *根据路径path建立多级目录
 *$dir目标目录 $mode权限,0700表示最高权限
*/
function  makedir( $dir , $mode = "0700" ) {
    if(strpos($dir , "/" )){
        $dir_path = "" ;
        $dir_info = explode("/" , $dir );
        foreach($dir_info as $key => $value){
            $dir_path .= $value ;
            if (!file_exists($dir_path)){
                @mkdir($dir_path, $mode) or die ("建立文件夹时失败了" );
                @chmod($dir_path, $mode);
            } else {
                $dir_path .= "/" ;
                continue ;
            }
            $dir_path .= "/" ;
        }
        return $dir_path ;
    } else {
        @mkdir($dir, $mode) or die( "建立失败了,请检查权限" );
        @chmod($dir, $mode);
        return $dir ;
    }
} //end makedir
makedir($path);

/**
 *根据url获取服务器上的图片
 *$url服务器上图片路径 $filename文件名
*/
function GrabImage($url,$filename="") {
    if($url=="") return false;
    if($filename=="") {
        $ext=strrchr($url,".");
        if($ext!=".gif" && $ext!=".jpg" && $ext!=".png")
            return false;
        $filename=date("YmdHis").$ext;
    }
    ob_start(); 
    readfile($url); 
    $img = ob_get_contents(); 
    ob_end_clean();
    $size = strlen($img); 

    $fp2=@fopen($filename, "a");
    fwrite($fp2,$img);
    fclose($fp2);
    return $filename;
}
?>

<html>
<body>
允许上传的文件类型为:<?=implode(', ',$phtypes)?><br/>
<input type="button" id="getImg" name="getImg" size="10" value="获取图片并保存" onclick="alert('12333');" />

<?php

echo $path."<br>";
/**/
$bigImg=GrabImage($imgPath, $tempPath);
if($bigImg){
    echo '<img src="'.$bigImg.'"><br>';
} else {
    echo "false";
} 

compressImg($bigImg,100,80,1);
?>
</body>
</html>

 

如何联系我:【万里虎】www.bravetiger.cn 【QQ】3396726884 (咨询问题100元起,帮助解决问题500元起) 【博客】http://www.cnblogs.com/kenshinobiy/
目录
相关文章
|
7月前
|
PHP
使用PHP实现随机调用图片
使用PHP实现随机调用图片
196 0
使用PHP实现随机调用图片
|
小程序 PHP 数据安全/隐私保护
php图片加水印函数
这里分享下php给图片加水印的几个自定义函数 给图片加水印首先需要开启GD库。 用到的php函数是imagecopymerge () 和 imagecopy () imagecopymerge 函数可以支持两个图像叠加时,设置叠加的透明度
87 0
|
PHP
【PHP】读取本地文件夹中所有图片并显示
PHP图片收集系统收集作业后,为了方便老师在线查阅作业,特意写了个读取图片然后显示出来的php 比较粗糙,可以再多美化美化
110 0
|
8天前
|
PHP 计算机视觉 UED
Buzz库:PHP图像处理中的异步图像下载和保存
Buzz库:PHP图像处理中的异步图像下载和保存
|
4月前
|
PHP
在 PHP 中将 WebP 转换为 GIF 图像格式
【8月更文挑战第27天】
82 2
|
5月前
|
数据采集 缓存 自然语言处理
PHP将HTML标签转化为图片
通过这个方法,PHP后端能够实现将HTML内容转化为图片的功能。这种方式虽然牵涉到一些额外的安装和配置,但能够相对灵活且稳定地解冀转换需求,适用于需要在后端动态生成图片的场景。
222 1
|
7月前
|
数据采集 机器学习/深度学习 存储
图片大搜罗:PHP下载器带你畅游Twitter图像海洋
构建Twitter图像下载器,使用PHP模拟请求抓取图像,通过代理IP规避限制。示例代码展示如何设置代理、用户代理和Cookie,解析HTML提取图像链接并下载。结合机器学习与元数据分析,可洞察用户行为和社会趋势。代理服务器信息及Twitter URL需自行替换。
图片大搜罗:PHP下载器带你畅游Twitter图像海洋
|
6月前
|
PHP
php 生成二维码图片
php 生成二维码图片
38 0
|
7月前
|
PHP 数据库
DIY私人图床:使用CFimagehost源码自建无需数据库支持的PHP图片托管服务-2
DIY私人图床:使用CFimagehost源码自建无需数据库支持的PHP图片托管服务
|
7月前
|
存储 PHP Apache
DIY私人图床:使用CFimagehost源码自建无需数据库支持的PHP图片托管服务-1
DIY私人图床:使用CFimagehost源码自建无需数据库支持的PHP图片托管服务