comparison montage.xml @ 2:8ff10e226c37 draft default tip

Uploaded
author bgruening
date Sat, 14 Mar 2015 17:42:53 -0400
parents
children
comparison
equal deleted inserted replaced
1:7ff9146333d3 2:8ff10e226c37
1 <tool id="graphicsmagick_image_montage" name="Image Montage" version="0.1.0">
2 <description></description>
3 <requirements>
4 <requirement type="package" version="1.3.18">graphicsmagick</requirement>
5 </requirements>
6 <command>
7 <![CDATA[
8 ln -s '${input_existing}' input_existing.jpg
9 &&
10 ln -s '${input_new}' input_new.jpg
11 &&
12 montage input_existing.jpg input_new.jpg -geometry +0+0 -background none -tile 1x2 temp.jpg
13 &&
14 mv temp.jpg '${output}'
15 ]]>
16 </command>
17
18 <inputs>
19 <param format="jpg" name="input_existing" type="data" label="Existing Image" />
20 <param format="jpg" name="input_new" type="data" label="New Image" />
21 </inputs>
22 <outputs>
23 <data format="jpg" name="output">
24 </data>
25 </outputs>
26 <tests>
27 </tests>
28 <help>
29 <![CDATA[
30
31 **What it does**
32
33 Stick Images together
34
35
36 ]]>
37 </help>
38 </tool>