• 大小: 0.63M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-01-30
  • 标签: 摄像头  flash  拍照  php  

资源简介

PHP Flash调用摄像头拍照

资源截图

代码片段和文件信息

error_reporting(0);
$w = (int)$_POST[‘width‘];
$h = (int)$_POST[‘height‘];
$img = imagecreatetruecolor($w $h);
imagefill($img 0 0 0x669966);
$rows = 0;
$cols = 0;
for($rows = 0; $rows < $h; $rows++){
$c_row = explode(““ $_POST[‘px‘ . $rows]);
for($cols = 0; $cols < $w; $cols++){
$value = $c_row[$cols];
if($value != ““){
$hex = $value;
while(strlen($hex) < 6){
$hex = “0“ . $hex;
}
$r = hexdec(substr($hex 0 2));
$g = hexdec(substr($hex 2 2));
$b = hexdec(substr($hex 4 2));
$test = imagecolorallocate($img $r $g $b);
imagesetpixel($img $cols $rows $test);
}
}
}
$filename=“upfiles/“.date(“Y-m-d-H-i-s“time()).“.jpg“;
header(“Content-type:image/jpeg“);
imagejpeg($img $filename 90);
header(“Location: $filename“);
?>

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       1468  2008-09-26 08:27  flashpic\CodePub.Com说明.txt

     文件       1568  2006-09-10 02:35  flashpic\index.htm

     文件       7168  2006-02-19 23:04  flashpic\classes\it\sephiroth\mloaderWindow.as

     文件       1593  2006-02-19 23:03  flashpic\classes\it\sephiroth\PrintScreen.as

     文件    1427968  2006-09-10 02:37  flashpic\makepic.fla

     文件        781  2006-02-19 23:50  flashpic\makepic.php

     文件      87683  2006-09-10 02:37  flashpic\makepic.swf

     文件      24615  2006-04-24 18:44  flashpic\images\bg01.png

     文件      24924  2006-04-24 18:44  flashpic\images\bg02.png

    ..AD...         0  2006-09-09 16:10  flashpic\classes\it\sephiroth

    ..AD...         0  2006-09-09 16:10  flashpic\classes\it

    ..AD...         0  2006-09-09 16:10  flashpic\classes

     目录          0  2006-09-09 19:52  flashpic\images

     目录          0  2006-09-09 16:10  flashpic\upfiles

     目录          0  2008-09-26 08:27  flashpic

----------- ---------  ---------- -----  ----

              1577768                    15


评论

共有 条评论