Currently, this plugin is compatible with ActiveScaffold >= 3.4 gem.
This plugin adds a camera viewer to take a snapshot from camera on ActiveScaffold forms. It uses SayCheese.js
You’ll need at least ActiveScaffold 3.4 to use this
gem install active_scaffold_camera
Set column to use :snapshot form_ui
Setup snapshot using options method on column
# app/controllers/visitors_controller.rb class VisitorsController < ApplicationController active_scaffold :visitor do |config| config.columns[:signature].form_ui = :signaturepad config.columns[:signature].options = {:source => -1} end end
Available options: video_not_supported, audio_not_supported, media_forbidden, source
Source can be set to use a specific source instead of displaying source selector. It must be the source index, and it can be negative index to start from end. If no device on that index, first device will be used.
If video_not_supported, audio_not_supported or media_forbidden are symbols they will be translated (using as_ method, so it must be on active_scaffold namespace). They have a default translation.
Snapshot form_ui sends a data url, encoded on base64, of the image, so it should be saved on column of blob type.
If you have issues installing the plugin, search / post to the Active Scaffold forum or Create an issue
Fork, hack, push, and request a pull:
http://github.com/activescaffold/active_scaffold_camera/
Released under the MIT license (included).