当前位置: 首页 > 工具软件 > JPEGCam > 使用案例 >

在线摄像头图片捕获 JPEGCam

扶隐水
2023-12-01

JPEGCam在线摄像头捕获图片

 

下载地址http://code.google.com/p/jpegcam/downloads/list

里面的文档说明很详细,这里要说明的是,该项目服务器端用的php,如果我们后台用rails的话,在action里面要获得表单传来的图片流文件,需要用到方法request.raw_post

def set_photo
      File.open("#{RAILS_ROOT}/public/"+"/1.jpg", "wb") do |f|    
          f.write(request.raw_post)   
       end   
    render :action => 'index'
  end

 

 类似资料: