File: README

package info (click to toggle)
imgstamp 2.0.8-2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 1,212 kB
  • ctags: 309
  • sloc: ansic: 3,305; sh: 327; makefile: 169; csh: 5
file content (66 lines) | stat: -rw-r--r-- 2,086 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
STAMP:  A GNU image timestamp utility
-------------------------------------

The main difference between v2.0 and earlier versions is the
addition of a GTK front-end to stamp (gstamp), and removal 
of most of the command-line options.

These options are now read from a configuration file, located
in ~/.stamprc.  A sample of this file is provided in the 
"doc" subdirectory, but will also be created for you during
the install process.

Here is essentially what you need to do to get a nice webcam
running using stamp:

1) Create a small script that achieves the following steps:

Generate an image using some video source (like a QuickCam)
Run stamp on this image
Optionally wait for a while
Repeat

A sample script, shown below (also provided in the doc/ 
subdirectory) is an example of one such script:

#!/bin/tcsh

loop:
    cqcam -32- -a+ -j -q 75 > /tmp/webcam.jpg
    stamp -f ;
    sleep 40 ;
    goto loop

stamp is called with -f so that the resulting image will be
sent using FTP to the server listed in the .stamprc file.  Without
specifying -f, the information about FTP will be ignored from your
.stamprc file.

You can customize the output of stamp quite a bit my editing the
~/.stamprc file.  Because stamp reads this file during each pass
of the loop in the above script, changes can be made to the appearance
of the JPEG produced by stamp, without killing and restarting your
webcam script.  This is one of the main advantages of version > 2.0
of stamp.

The GTK graphical user interface allows you to manipulate all of
the options in .stamprc, and provides a preview of what the image
will look like, after being stamped.  Remember, stamp and the GTK
interface are independent programs (for now).

Stamp's homepage is located at

	http://stamp.netpedia.net

Please be sure to visit this site for information, documentation,
and news.

We sincerely hope you enjoy the program.  Please report problems to
patrick@cs.pitt.edu.

Have fun,

	- Patrick Keane <patrick@cs.pitt.edu> or <pk@style64.org>
	- Joshua Kirby <jdkirby@usao.edu>
	- Eric Werner <ebw@city-net.com>