From: Scott Worley Date: Thu, 27 Feb 2014 01:49:15 +0000 (-0800) Subject: Initial revision X-Git-Url: http://git.scottworley.com/picsort/commitdiff_plain/e18c13a6bea305ff31aec74c590c13551b4cc6a5 Initial revision --- e18c13a6bea305ff31aec74c590c13551b4cc6a5 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fdde87f --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +?? +*.jpeg +*.NEF diff --git a/pics-make-inputjs b/pics-make-inputjs new file mode 100755 index 0000000..73bff75 --- /dev/null +++ b/pics-make-inputjs @@ -0,0 +1,5 @@ +#!/bin/bash + +cat > picstosort.js < -1 to 4 in .25 steps + ufraw-batch --out-type=jpeg \ + --green="$GREEN" \ + --temperature="$TEMPERATURE" \ + --compression="$JPEGCOMPRESSION" \ + --exposure="$exposure" \ + --output="$out" \ + "$f" + done +done diff --git a/picsorter.html b/picsorter.html new file mode 100644 index 0000000..98943de --- /dev/null +++ b/picsorter.html @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/picsorter.js b/picsorter.js new file mode 100644 index 0000000..ff1db27 --- /dev/null +++ b/picsorter.js @@ -0,0 +1,3 @@ +$( document ).ready(function() { + $("#pic")[0].src = "20/" + files[0]; +});