Search
 
SCRIPT & CODE EXAMPLE
 

PHP

php take picture with mobile camera

<!DOCTYPE html>
<html>
<head>
    <title>WebCam jQuery and PHP script</title>
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script>
 
    <style>
        #camera_wrapper, #show_saved_img{float:left; width: 650px;}
    </style>
 
    <script type="text/javascript" src="scripts/webcam.js"></script>
    <script>
        $(function(){
            //give the php file path
            webcam.set_api_url( 'saveimage.php' );
            webcam.set_swf_url( 'scripts/webcam.swf' );
            webcam.set_quality( 100 ); // Image quality (1 - 100)
            webcam.set_shutter_sound( true ); // play shutter click sound
 
            var camera = $('#camera');
            camera.html(webcam.get_html(600, 460));
 
            $('#capture_btn').click(function(){
                //take snap
                webcam.snap();
            });
 
            //after taking snap call show image
            webcam.set_hook( 'onComplete', function(img){
                $('#show_saved_img').html('<img src="' + img + '">');
                //reset camera for next shot
                webcam.reset();
            });
 
        });
    </script>
</head>
<body>
    <h1>Capture photo with Web Camera - PHP Script</h1>
 
    <!-- camera screen -->
    <div id="camera_wrapper">
    <div id="camera"></div>
    <br />
    <button id="capture_btn">Capture</button>
    </div>
    <!-- show captured image -->
    <div id="show_saved_img" ></div>
</body>
</html>


Saveimage.php

<?php
 
//set random name for the image, used time() for uniqueness
 
$filename =  time() . '.jpg';
$filepath = 'saved_images/';
 
//read the raw POST data and save the file with file_put_contents()
$result = file_put_contents( $filepath.$filename, file_get_contents('php://input') );
if (!$result) {
    print "ERROR: Failed to write data to $filename, check permissionsn";
    exit();
}
 



echo $filepath.$filename;
?>
Comment

PREVIOUS NEXT
Code Example
Php :: update many laravel 
Php :: ISO 8601 php 
Php :: php do not refresh page after submit post 
Php :: dynamic base url codeigniter 
Php :: laravel drop foreign key 
Php :: php if 
Php :: if is front end wp 
Php :: php time() function 
Php :: download data from s3 and save to local disk laravel 
Php :: laravel automatically generate unique username 
Php :: php get list of filenames in diretory 
Php :: how to sent request in php 
Php :: php read text file into array 
Php :: laravel hasmany 
Php :: Filtering Eloquent collection data with filter 
Php :: settimezone in php 
Php :: laravel check if string is url 
Php :: time left laravel seconds 
Php :: install logger bundle in symfony project 
Php :: PHP strstr — Find the first occurrence of a string 
Php :: Laravel Retrieve All Session Data 
Php :: wordpress get id from page title 
Php :: simplexml_load_string alternative php 
Php :: laravel generate unique db token 
Php :: php match 
Php :: Install Older Version of Laravel using Composer 
Php :: laravel observer 
Php :: php http authentication 
Php :: laravel groupby and latest 
Php :: how to on debugger in wordpress 
ADD CONTENT
Topic
Content
Source link
Name
4+4 =