php 保存flash線上拍照發送過照片

來源:互聯網
上載者:User
關鍵字 網路程式設計 PHP教程

<?php
保存報像頭上傳的圖片.

define('SD_ROOT', dirname(__FILE__).' /');
@header("Expires: 0");
@header("Cache-Control: private, post-check=0, pre-check=0, max-age=0", FALSE);
@header("Pragma: no-cache");


$pic_id = time();

生成圖片存放路徑
$new_avatar_path = 'avatar_origin/'.$pic_id.'. jpg';

將POST過來的二進位資料直接寫入圖片檔.
$len = file_put_contents(SD_ROOT.'. /'.$new_avatar_path,file_get_contents("php://input"));

原始圖片比較大,壓縮一下. 效果還是很明顯的, 使用80%的壓縮率肉眼基本沒有什麼區別
$avtar_img = imagecreatefromjpeg(SD_ROOT.'. /'.$new_avatar_path);
imagejpeg($avtar_img,SD_ROOT.'. /'.$new_avatar_path,80);
nix系統下有必要時可以使用 chmod($filename,$permissions);

log_result('圖片大小: '.$len);


輸出新保存的圖片位置, 測試時注意改一下功能變數名稱路徑, 後面的statusText是成功提示資訊.
status 為1 是成功上傳,否則為失敗.
$d = new pic_data();
$d->data->photoId = $pic_id;
$d->data->urls[0] = 'HTTP://jzread.com/avatar_test/'.$new_avatar_path;
$d->data->urls[0] = '/avatar_test/'.$new_avatar_path;
$d->status = 1;
$d->statusText = '上傳成功!';

$msg = json_encode($d);

echo $msg;

log_result($msg);
function  log_result($word) {
@$fp = fopen("log.txt","a");
@flock($fp, LOCK_EX) ;
@fwrite($fp,$word." :執行日期:".strftime("%Y%m%d%H%I%S",time())." rn");
@flock($fp, LOCK_UN);
@fclose($fp);
}
class pic_data
{
public $data;
public $status;
public $statusText;
public function __construct()
{
$this->data->urls = array();
}
}

?>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.