图片解析问题:Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 32 byte)...

这个问题的意思是:默认PHP代码能够申请到的最大内存字节数就是134217728 字节已耗尽,(试图分配32字节)
遇到这个问题是在制作二维码解析过程中,程序走到GDLuminanceSource.php中获取图片的颜色时,由于for循环嵌套,是分配的内存耗尽。
这种错误可以用$_FILES[‘myFile’][‘error’] 捕捉该文件上传相关的错误代码,错误代码应该为1,超过了文件大小php.ini中即系统设定的大小。
第一种方法:
原因是PHP的内存不够大,可以修改php.ini的配置文件:
需要在PHP.ini里设置以下几项:

  1. post_max_size =10M
    表单提交最大数据为10M.此项不是限制上传单个文件的大小,而是针对整个表单的提交数据进行限制的.
    限制范围包括表单提交的所有内容.例如:发表贴子时,贴子标题,内容,附件等…
  2. file_uploads = On
    是否允许上传文件,如果为OFF您将不能上传文件.
  3. upload_tmp_dir = “D:/APM/PHP/uploadtemp/”
    上传文件时系统使用的缓存目录.如果此目录所在磁盘空间不足的话您将不能上传文件.
  4. upload_max_filesize =2M
    最大上传文件大小,此项针对上传文件时单个文件的大小.

但是改完了发现还是没有用,其实我们可以考虑代码优化,使用PHP自带的unset()函数去处理,在做foreach()的时候,用完就unset变量。
如果还是解决不了,上传的图片可以参考第二种方法。
第二种方法
图片则可以采用图片压缩,注意过小图片不可以压缩,这样反而压缩后图片变得更大。

/**
 * 使用说明
 * $src = “111.jpg”;  这是上传的图片路径
 * $percent = 1;  #原图压缩,不缩放,但体积大大降低,压缩比例
 * $dst_img = “111.jpg”; 这是压缩后的图片路径(其实俩个路径一样,只是压缩了一下图片质量)
 * $image = (new imgcompress($src,$percent))->compressImg($dst_img);  
 *


/**
 * 图片压缩类:通过缩放来压缩。
 * 如果要保持源图比例,把参数$percent保持为1即可。
 * 即使原比例压缩,也可大幅度缩小。数码相机4M图片。也可以缩为700KB左右。如果缩小比例,则体积会更小。
 *
 * 结果:可保存、可直接显示。
 */
class imgcompress{
    private $src;
    private $image;
    private $imageinfo;
    private $percent = 0.5;
    /**
     * 图片压缩
     * @param $src 源图
     * @param float $percent  压缩比例
     */
    public function __construct($src, $percent=1)
    {
        $this->src = $src;
        $this->percent = $percent;
    }
    /** 高清压缩图片
     * @param string $saveName  提供图片名(可不带扩展名,用源图扩展名)用于保存。或不提供文件名直接显示
     */
    public function compressImg($saveName='')
    {
   
        $this->_openImage();
        if(!empty($saveName)) $this->_saveImage($saveName);  //保存
        else $this->_showImage();
    }
    /**
     * 内部:打开图片
     */
    private function _openImage()
    {
        list($width, $height, $type, $attr) = getimagesize($this->src);
        $this->imageinfo = array(
            'width'=>$width,
            'height'=>$height,
            'type'=>image_type_to_extension($type,false),
            'attr'=>$attr
        );
        $fun = "imagecreatefrom".$this->imageinfo['type'];
        $this->image = $fun($this->src);
        $this->_thumpImage();
    }
    /**
     * 内部:操作图片
     */
    private function _thumpImage()
    {
        $new_width = $this->imageinfo['width'] * $this->percent;
        $new_height = $this->imageinfo['height'] * $this->percent;
        $image_thump = imagecreatetruecolor($new_width,$new_height);
        //将原图复制带图片载体上面,并且按照一定比例压缩,极大的保持了清晰度
        imagecopyresampled($image_thump,$this->image,0,0,0,0,$new_width,$new_height,$this->imageinfo['width'],$this->imageinfo['height']);
        imagedestroy($this->image);
        $this->image = $image_thump;
    }
    /**
     * 输出图片:保存图片则用saveImage()
     */
    private function _showImage()
    {
        header('Content-Type: image/'.$this->imageinfo['type']);
        $funcs = "image".$this->imageinfo['type'];
        $funcs($this->image);
    }
    /**
     * 保存图片到硬盘:
     * @param  string $dstImgName  1、可指定字符串不带后缀的名称,使用源图扩展名 。2、直接指定目标图片名带扩展名。
     */
    private function _saveImage($dstImgName)
    {
        if(empty($dstImgName)) return false;
        $allowImgs = ['.jpg', '.jpeg', '.png', '.bmp', '.wbmp','.gif'];   //如果目标图片名有后缀就用目标图片扩展名 后缀,如果没有,则用源图的扩展名
        $dstExt =  strrchr($dstImgName ,".");
        $sourseExt = strrchr($this->src ,".");
        if(!empty($dstExt)) $dstExt =strtolower($dstExt);
        if(!empty($sourseExt)) $sourseExt =strtolower($sourseExt);
        //有指定目标名扩展名
        if(!empty($dstExt) && in_array($dstExt,$allowImgs)){
            $dstName = $dstImgName;
        }elseif(!empty($sourseExt) && in_array($sourseExt,$allowImgs)){
            $dstName = $dstImgName.$sourseExt;
        }else{
            $dstName = $dstImgName.$this->imageinfo['type'];
        }
        $funcs = "image".$this->imageinfo['type'];
        $funcs($this->image,$dstName);
    }
    /**
     * 销毁图片
     */
    public function __destruct(){
        imagedestroy($this->image);
    }
}

图片压缩https://blog.csdn.net/hello_xiaoyu/article/details/78732500

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值