Mobi Technologies 70008 Recam Remote Monitoring User Manual

Page 24

Advertising
background image

- 24 -

Example:

<!-- red background -->

<PARAM NAME="COLOR"
VALUE="#FF0000">

IMAGE

Defines file name of captured image, which is
defined in the Image Name box. See Image
Name
in the Broadcasting section for more
info.

Example:

<PARAM NAME="IMAGE" VALUE="Cam.jpg">

BORDER

If value is "ON," applet draws frame around
image. If value is "OFF," applet just displayes
the captured image.

Example:

<PARAM NAME="BORDER" VALUE="OFF">

How to create WebCam page with Actual Drawing

In the Actual Drawing program:

Click Container with HTML text from the Insert menu.

Add the following text in the HTML script window.

<APPLET CODE="WebCam_Viewer.class"

WIDTH=640 HEIGHT=480>

<PARAM NAME="COLOR" VALUE="#00FF00">

<PARAM NAME="IMAGE" VALUE="capture0.jpg">

<PARAM NAME="BORDER" VALUE="ON">

</APPLET>

Modify the COLOR parameter according to color of your web page.

Change the IMAGE parameter according to value in the Image Name box in the Internet Setting dialog
box.

Displaying Still Images on Web Page

If you don't want to use the Java applet on your web page to display the webcam, it is easy to configure your web
page to display captured image.

This method doesn't need any special technologies like a Java Engine, and it works with any Web browser, but
frame rate cannot be higher than 1 frame per second.

Use a tag like this to display the image:

<IMG WIDTH=240 HEIGHT=180 SRC="capture0.jpg">

Change the SRC parameter according to value in the Image Name box in the Internet Setting dialog box.

To refresh the image, add a tag like this to the <Head> section of your web page:

<META HTTP-EQUIV="REFRESH" CONTENT="10">

This will cause the Internet browser to refresh page every 10 seconds. Specify this value to the same as your

Advertising