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

Uploaded
author bgruening
date Sat, 14 Mar 2015 17:42:53 -0400
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/montage.xml	Sat Mar 14 17:42:53 2015 -0400
@@ -0,0 +1,38 @@
+<tool id="graphicsmagick_image_montage" name="Image Montage" version="0.1.0">
+    <description></description>
+    <requirements>
+        <requirement type="package" version="1.3.18">graphicsmagick</requirement>
+    </requirements>
+    <command>
+<![CDATA[
+        ln -s '${input_existing}' input_existing.jpg
+        &&
+        ln -s '${input_new}' input_new.jpg
+        &&
+        montage input_existing.jpg input_new.jpg -geometry +0+0 -background none -tile 1x2 temp.jpg
+        &&
+        mv temp.jpg '${output}'
+]]>
+    </command>
+
+    <inputs>
+        <param format="jpg" name="input_existing" type="data" label="Existing Image" />
+        <param format="jpg" name="input_new" type="data" label="New Image" />
+    </inputs>
+    <outputs>
+        <data format="jpg" name="output">
+        </data>
+    </outputs>
+    <tests>
+  </tests>
+    <help>
+<![CDATA[
+
+**What it does**
+
+Stick Images together
+
+
+]]>
+    </help>
+</tool>