欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

PHP实现接收二进制流转换成图片的方法

程序员文章站 2024-03-06 14:46:32
本文实例讲述了php实现接收二进制流转换成图片的方法。分享给大家供大家参考,具体如下: 这里实现php 接收二进制流转换成图片,所使用的图片类imageupload.ph...

本文实例讲述了php实现接收二进制流转换成图片的方法。分享给大家供大家参考,具体如下:

这里实现php 接收二进制流转换成图片,所使用的图片类imageupload.php如下:

<?php
/**
 * 图片类
* @version 1.0
*
* php默认只识别application/x-www.form-urlencoded标准的数据类型。
* 因此,对型如text/xml 或者 soap 或者 application/octet-stream 之类的内容无法解析,如果用$_post数组来接收就会失败!
* 故保留原型,交给$globals['http_raw_post_data'] 来接收。
* 另外还有一项 php://input 也可以实现此这个功能
* php://input 允许读取 post 的原始数据。和 $http_raw_post_data 比起来,它给内存带来的压力较小,并且不需要任何特殊的 php.ini 设置。php://input和 $http_raw_post_data 不能用于 enctype="multipart/form-data"。
*/
class imageupload {
  const root_path = './';
  const fail_write_data = 'fail to write data';
  //没有数据流
  const no_stream_data = 'the post data is empty';
  //图片类型不正确
  const not_correct_type = 'not a correct image type';
  //不能创建文件
  const can_not_create_file = 'can not create file';
  //上传图片名称
  public $image_name;
  //图片保存名称
  public $save_name;
  //图片保存路径
  public $save_dir;
  //目录+图片完整路径
  public $save_fullpath;
  /**
   * 构造函数
   * @param string $save_name 保存图片名称
   * @param string $save_dir 保存路径名称
   */
  public function __construct($save_name, $save_dir) {
    //set_error_handler ( $this->error_handler () );
    //设置保存图片名称,若未设置,则随机产生一个唯一文件名
    $this->save_name = $save_name ? $save_name : md5 ( mt_rand (), uniqid () );
    //设置保存图片路径,若未设置,则使用年/月/日格式进行目录存储
    $this->save_dir = $save_dir ? self::root_path .$save_dir : self::root_path .date ( 'y/m/d' );
    //创建文件夹
    @$this->create_dir ( $this->save_dir );
    //设置目录+图片完整路径
    $this->save_fullpath = $this->save_dir . '/' . $this->save_name;
  }
  //兼容php4
  public function image($save_name) {
    $this->__construct ( $save_name );
  }
  public function stream2image() {
    //二进制数据流
    $data = file_get_contents ( 'php://input' ) ? file_get_contents ( 'php://input' ) : gzuncompress ( $globals ['http_raw_post_data'] );
    //数据流不为空,则进行保存操作
    if (! empty ( $data )) {
      //创建并写入数据流,然后保存文件
      if (@$fp = fopen ( $this->save_fullpath, 'w+' )) {
        fwrite ( $fp, $data );
        fclose ( $fp );
        $baseurl = "http://" . $_server ["server_name"] . ":" . $_server ["server_port"] . dirname ( $_server ["script_name"] ) . '/' . $this->save_name;
        if ( $this->getimageinfo ( $baseurl )) {
          echo $baseurl;
        } else {
          echo ( self::not_correct_type );
        }
      } else {
      }
    } else {
      //没有接收到数据流
      echo ( self::no_stream_data );
    }
  }
  /**
   * 创建文件夹
   * @param string $dirname 文件夹路径名
   */
  public function create_dir($dirname, $recursive = 1,$mode=0777) {
    ! is_dir ( $dirname ) && mkdir ( $dirname,$mode,$recursive );
  }
  /**
   * 获取图片信息,返回图片的宽、高、类型、大小、图片mine类型
   * @param string $imagename 图片名称
   */
  public function getimageinfo($imagename = '') {
    $imageinfo = getimagesize ( $imagename );
    if ($imageinfo !== false) {
      $imagetype = strtolower ( substr ( image_type_to_extension ( $imageinfo [2] ), 1 ) );
      $imagesize = filesize ( $imageinfo );
      return $info = array ('width' => $imageinfo [0], 'height' => $imageinfo [1], 'type' => $imagetype, 'size' => $imagesize, 'mine' => $imageinfo ['mine'] );
    } else {
      //不是合法的图片
      return false;
    }
  }
  /*private function error_handler($a, $b) {
   echo $a, $b;
  }*/
}
?>

ps:这里再为大家推荐几款比较实用的图片处理工具供大家参考使用:

在线图片转换base64工具:

ico图标在线生成工具:

在线email邮箱图标制作工具:

在线图片格式转换(jpg/bmp/gif/png)工具:

更多关于php相关内容感兴趣的读者可查看本站专题:《php图形与图片操作技巧汇总》、《php基本语法入门教程》、《php运算与运算符用法总结》、《php面向对象程序设计入门教程》、《php网络编程技巧总结》、《php数组(array)操作技巧大全》、《php字符串(string)用法总结》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总

希望本文所述对大家php程序设计有所帮助。

上一篇: PHP生成图片缩略图类示例

下一篇: