本文实例讲述了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;
}*/
}
?>
希望本文所述对大家php程序设计有所帮助。
更多php实现接收二进制流转换成图片的方法。