comparison tools/image_filmify.xml @ 0:64374d852e36

Uploaded
author tomasz-bednarz
date Mon, 25 Nov 2013 21:32:12 -0500
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:64374d852e36
1 <tool id="image_filmify" name="Image Filmify" version="1.0.0">
2
3 <description>Change image to funky film-frame looking image.</description>
4
5 <command interpreter="python" >
6 image_do.py -i $input -o $output -c "filmify" -s "$label_film" -e "$input.ext"
7 </command>
8
9 <inputs>
10 <param name="input" type="data" format="png,jpg,tif,zip" label="Input image" help="Original RGB or grayscale image." />
11 <param name="label_film" size="20" type="text" value="cloudimaging.net.au" label="Label for the movie frame." />
12 </inputs>
13
14 <outputs>
15 <data format="input" name="output" metadata_source="input" label="Filmify on ${input.display_name}"/>
16 </outputs>
17
18 <help>
19 Makes the image look like 35mm film.
20 </help>
21
22 <tests>
23 <test>
24 <param name="input" value="sydney.jpg" />
25 <output name="output" file="sydney-filmify.jpg" />
26 </test>
27 </tests>
28
29 </tool>