·您当前的位置:首页 > 技术教程 > AS2与AS3技术 >

[AS3]as3+php保存截取摄像头图片源代码

时间:2014-01-04 16:38cuplayer
做了as3+php保存截取摄像头图片源代码的应用,现将源代码公布。(请自行配置php和gd2库) as3:(放到帧上,可自行修改移至相关class)

做了一个类似的应用,现将源代码公布。(请自行配置php和gd2库)  as3:(放到帧上,可自行修改移至相关class)

  1. function clickHandler(e:MouseEvent):void 
  2.     var bitmapdata:BitmapData = new BitmapData(video.width, video.height); 
  3.     bitmapdata.draw(video); 
  4.     var jpgEncoder:JPGEncoder = new JPGEncoder(80);//图片质量 
  5.     var jpgStream:ByteArray = jpgEncoder.encode(bitmapdata); 
  6.     var header:URLRequestHeader = new URLRequestHeader ("Content-type", "application/octet-stream"); 
  7.     var jpgURLRequest:URLRequest = new URLRequest ("http://localhost/jpg_encoder_download.php?name=camera.jpg"); //此web url请自行修改 
  8.     jpgURLRequest.requestHeaders.push(header); 
  9.     jpgURLRequest.method = URLRequestMethod.POST; 
  10.     jpgURLRequest.data = jpgStream
  11.     navigateToURL(jpgURLRequest, "_blank"); 
  12. var video:Video = new Video; 
  13. addChild(video); 
  14. video.attachCamera(Camera.getCamera()); 
  15. var btn:Sprite = new Sprite; 
  16. btn.graphics.beginFill(0,1); 
  17. btn.graphics.drawRoundRect(0,0,100,25,10); 
  18. btn.x = 110
  19. btn.y = 250
  20. btn.buttonMode = true
  21. btn.addEventListener(MouseEvent.CLICK, clickHandler); 
  22. addChild(btn); 

两个类文件BitString.as, JPGEncoder.as,下载后注意大小写,此wp不知道咋整的,把偶上传时的大写都改成小写了。

  1. <?php 
  2. if ( isset ( $GLOBALS["HTTP_RAW_POST_DATA"] )) { 
  3.     // CuPlayer.com酷播 get bytearray 
  4.     $im = $GLOBALS["HTTP_RAW_POST_DATA"]; 
  5.     // CuPlayer.com酷播 add headers for download dialog-box 
  6.     header('Content-Type: image/jpeg'); 
  7.     header("Content-Disposition: attachment; filename=".$_GET['name']); 
  8.     echo $im; 
  9. }  else echo 'An error occured.'; 
  10. ?> 

 

热门文章推荐

请稍候...

保利威视云平台-轻松实现点播直播视频应用

酷播云数据统计分析跨平台播放器