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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
.help imcopy Oct84 images.imutil
.ih
NAME
imcopy -- copy images
.ih
USAGE
imcopy input output
.ih
PARAMETERS
.ls input
Images to be copied.
.le
.ls output
Output images or directory.
.le
.ls verbose = yes
Print each operation as it takes place?
.le
.ih
DESCRIPTION
Each of the input images, which may be given as a general image template
including sections, is copied to the corresponding output image list,
which may also be given as an image template, or the output directory.
If the output is a list of images then the number of input images must be
equal to the number of output images and the input and output images are paired
in order. If the output image name exists and contains a section then the
input image (provided it is the same size as the section) will be copied
into that section of the input image. If the output image name does not
have a section specification and if it is the same as the input image name
then the input image is copied to a temporary file which replaces the input
image when the copy is successfully concluded. Note that these are the only
cases where clobber checking is bypassed; that is, if an output image name
is not equal to the input image name or a subsection of an existing image
and the file already exists then a clobber error will occur if
clobber checking is in effect.
The verbose options prints for each copy lines of the form:
.nf
input image -> output image
.fi
.ih
EXAMPLES
1. For a simple copy of an image:
cl> imcopy image imagecopy
2. To copy a portion of an image:
cl> imcopy image[10:20,*] subimage
3. To copy several images:
cl> imcopy image1,image2,frame10 a,b,c
4. To trim an image:
cl> imcopy image[10:20,*] image
In the above example the specified section of the input image replaces the
original input image. To trim several images using an image template:
cl> imcopy frame*[1:512,1:512] frame*
In this example all images beginning with "frame" are trimmed to 512 x 512.
5. To copy a set of images to a new directory:
.nf
cl> imcopy image* directory
or
cl> imcopy image* directory$
or
cl> imcopy image* osdirectory
.fi
where "osdirectory" is an operating system directory name (i.e. /user/me
in UNIX).
6. To copy a section of an image in an already existing image of
sufficient size to contain the input section.
.nf
cl> imcopy image[1:512,1:512] outimage[257:768,257:768]
.fi
.ih
BUGS
The distinction between copying to a section of an existing image
and overwriting a input image is rather inobvious.
.endhelp
|