您好,登錄后才能下訂單哦!
本篇內(nèi)容主要講解“php數(shù)據(jù)流如何轉(zhuǎn)化為圖片”,感興趣的朋友不妨來看看。本文介紹的方法操作簡(jiǎn)單快捷,實(shí)用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“php數(shù)據(jù)流如何轉(zhuǎn)化為圖片”吧!
php數(shù)據(jù)流轉(zhuǎn)化為圖片的方法:1、創(chuàng)建一個(gè)PHP示例文件;2、通過“class imageUpload {...}”方式定義一個(gè)圖片類;3、通過“public function image($save_name) {...}”方法創(chuàng)建并寫入數(shù)據(jù)流;4、通過“getimageInfo”方法獲取圖片信息即可。
php 數(shù)據(jù)流怎么轉(zhuǎn)化為圖片?
php 接收二進(jìn)制流轉(zhuǎn)換成圖片
php 接收二進(jìn)制流轉(zhuǎn)換成圖片,圖片類imageUpload.php如下:
<?php
/**
* 圖片類
* @author http://blog.csdn.net/haiqiao_2010
* @version 1.0
*
* PHP默認(rèn)只識(shí)別application/x-www.form-urlencoded標(biāo)準(zhǔn)的數(shù)據(jù)類型。
* 因此,對(duì)型如text/xml 或者 soap 或者 application/octet-stream 之類的內(nèi)容無法解析,如果用$_POST數(shù)組來接收就會(huì)失敗!
* 故保留原型,交給$GLOBALS['HTTP_RAW_POST_DATA'] 來接收。
* 另外還有一項(xiàng) php://input 也可以實(shí)現(xiàn)此這個(gè)功能
* php://input 允許讀取 POST 的原始數(shù)據(jù)。和 $HTTP_RAW_POST_DATA 比起來,它給內(nèi)存帶來的壓力較小,并且不需要任何特殊的 php.ini 設(shè)置。php://input和 $HTTP_RAW_POST_DATA 不能用于 enctype="multipart/form-data"。
*/
class imageUpload {
const ROOT_PATH = './';
const FAIL_WRITE_DATA = 'Fail to write data';
//沒有數(shù)據(jù)流
const NO_STREAM_DATA = 'The post data is empty';
//圖片類型不正確
const NOT_CORRECT_TYPE = 'Not a correct image type';
//不能創(chuàng)建文件
const CAN_NOT_CREATE_FILE = 'Can not create file';
//上傳圖片名稱
public $image_name;
//圖片保存名稱
public $save_name;
//圖片保存路徑
public $save_dir;
//目錄+圖片完整路徑
public $save_fullpath; /**
* 構(gòu)造函數(shù)
* @param String $save_name 保存圖片名稱
* @param String $save_dir 保存路徑名稱
*/
public function __construct($save_name, $save_dir) {
//set_error_handler ( $this->error_handler () ); //設(shè)置保存圖片名稱,若未設(shè)置,則隨機(jī)產(chǎn)生一個(gè)唯一文件名
$this->save_name = $save_name ? $save_name : md5 ( mt_rand (), uniqid () );
//設(shè)置保存圖片路徑,若未設(shè)置,則使用年/月/日格式進(jìn)行目錄存儲(chǔ)
$this->save_dir = $save_dir ? self::ROOT_PATH .$save_dir : self::ROOT_PATH .date ( 'Y/m/d' ); //創(chuàng)建文件夾
@$this->create_dir ( $this->save_dir );
//設(shè)置目錄+圖片完整路徑
$this->save_fullpath = $this->save_dir . '/' . $this->save_name;
}
//兼容PHP4
public function image($save_name) {
$this->__construct ( $save_name );
} public function stream2Image() {
//二進(jìn)制數(shù)據(jù)流
$data = file_get_contents ( 'php://input' ) ? file_get_contents ( 'php://input' ) : gzuncompress ( $GLOBALS ['HTTP_RAW_POST_DATA'] );
//數(shù)據(jù)流不為空,則進(jìn)行保存操作
if (! empty ( $data )) {
//創(chuàng)建并寫入數(shù)據(jù)流,然后保存文件
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 {
//沒有接收到數(shù)據(jù)流
echo ( self::NO_STREAM_DATA );
}
}
/**
* 創(chuàng)建文件夾
* @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;
}*/ }
?>
到此,相信大家對(duì)“php數(shù)據(jù)流如何轉(zhuǎn)化為圖片”有了更深的了解,不妨來實(shí)際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。