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 기반 앱

AI Clothes Remover

AI Clothes Remover

사진에서 옷을 제거하는 온라인 AI 도구입니다.

Undress AI Tool

Undress AI Tool

무료로 이미지를 벗다

Clothoff.io

Clothoff.io

AI 옷 제거제

AI Hentai Generator

AI Hentai Generator

AI Hentai를 무료로 생성하십시오.

뜨거운 도구

메모장++7.3.1

메모장++7.3.1

사용하기 쉬운 무료 코드 편집기

SublimeText3 중국어 버전

SublimeText3 중국어 버전

중국어 버전, 사용하기 매우 쉽습니다.

스튜디오 13.0.1 보내기

스튜디오 13.0.1 보내기

강력한 PHP 통합 개발 환경

드림위버 CS6

드림위버 CS6

시각적 웹 개발 도구

SublimeText3 Mac 버전

SublimeText3 Mac 버전

신 수준의 코드 편집 소프트웨어(SublimeText3)