首页 php教程 PHP源码 php5.4以下模拟getimagesizefromstring

php5.4以下模拟getimagesizefromstring

May 25, 2016 pm 05:07 PM

html5上传图片时可用php://input的数据流来运作.
如果要得到图片信息,那只有getimagesize($filename),再打一次刚关闭的文件.
php里有一个getimagesizefromstring,但是要>=php5.4,但目前还没服务器还没用上这么高版本的php.
作为一个效率癖,这是不被允许的,有直接操纵数据流的方法吗?
当然, stream_register_wrapper — 注册一个用 PHP 类实现的 URL 封装协议

php代码

class getImgStream{
  
     private $imgStream;
     private $position;
  
     function stream_open($path, $mode, $options, &$opened_path){
         $url = parse_url($path);
         $this->imgStream = $GLOBALS[$url["host"]];
         $this->position = 0;
         return true;
     }
  
     function stream_read($count){
         $ret = substr($this->imgStream, $this->position, $count);
         $this->position += strlen($ret);
         return $ret;
     }
  
     function stream_stat(){
         //maxmemory: 5 * 1024 * 1024;
         $fp = fopen("php://temp/maxmemory:5242880", 'r+');
         fwrite($fp, $this->imgStream);
         $fstat = fstat($fp);
         fclose($fp);
         return $fstat;
     }
  
     function stream_eof(){
         return $this->position >= strlen($this->imgStream);
     }
  
     function stream_tell(){
         return $this->position;
     }
        function stream_seek($offset, $whence){
            $l = strlen($this->imgStream);
            $p = &$this->position;
            switch($whence){
                case SEEK_SET: $newPos = $offset;
                    break;
                case SEEK_CUR: $newPos = $p + $offset;
                    break;
                case SEEK_END: $newPos = $l + $offset;
                    break;
                default: return false;
            }
            $ret = ($newPos >= 0 && $newPos <= $l);
            if($ret)
                $p = $newPos;
            return $ret;
        }
 
     function stream_close(){
         unset($this->imgStream, $this->position);
     }
  
 }
  
 $file_path = &#39;http://www.baidu.com/img/shouye_b5486898c692066bd2cbaeda86d74448.gif&#39;;
 $stream = file_get_contents($file_path);
  
 stream_wrapper_register("image", "getImgStream");
  
 print_r(getimagesize(&#39;image://stream&#39;));
 $new_img = imagecreatefromgif(&#39;image://stream&#39;);
 //或者
 $new_img = imagecreatefromstring($stream);
 print_r($new_img);
 imagejpeg($new_img, &#39;E:\WEB\uploads\test.jpg&#39;, 100);
登录后复制

方法二

$file_path = &#39;http://www.baidu.com/img/shouye_b5486898c692066bd2cbaeda86d74448.gif&#39;;
$stream = file_get_contents($file_path);
print_r(getimagesize("data://text/plain;base64," . base64_encode($stream)));
$new_img = imagecreatefromgif("data://text/plain;base64," . base64_encode($stream));
//或者
$new_img = imagecreatefromstring($stream);
print_r($new_img);
imagejpeg($new_img, &#39;E:\WEB\uploads\test.jpg&#39;, 100);
登录后复制
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn

热AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover

AI Clothes Remover

用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool

Undress AI Tool

免费脱衣服图片

Clothoff.io

Clothoff.io

AI脱衣机

AI Hentai Generator

AI Hentai Generator

免费生成ai无尽的。

热门文章

R.E.P.O.能量晶体解释及其做什么(黄色晶体)
2 周前 By 尊渡假赌尊渡假赌尊渡假赌
仓库:如何复兴队友
4 周前 By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island冒险:如何获得巨型种子
4 周前 By 尊渡假赌尊渡假赌尊渡假赌

热工具

记事本++7.3.1

记事本++7.3.1

好用且免费的代码编辑器

SublimeText3汉化版

SublimeText3汉化版

中文版,非常好用

禅工作室 13.0.1

禅工作室 13.0.1

功能强大的PHP集成开发环境

Dreamweaver CS6

Dreamweaver CS6

视觉化网页开发工具

SublimeText3 Mac版

SublimeText3 Mac版

神级代码编辑软件(SublimeText3)