Loading the full size images with max-height was too slow.
Move the previous zoom behaviour from 'z' to 'Z'.
GREEN=1.105
TEMPERATURE=5500
JPEGCOMPRESSION=95
GREEN=1.105
TEMPERATURE=5500
JPEGCOMPRESSION=95
for f;do
for level in {10..30};do
for f;do
for level in {10..30};do
+ mkdir -p {,sm/}"$level"
base="$(basename "$f")"
out="$level/${base%.NEF}.jpeg"
exposure=$(dc <<< "2k $level 4 / 3.5-p") # 10 to 30 -> -1 to 4 in .25 steps
base="$(basename "$f")"
out="$level/${base%.NEF}.jpeg"
exposure=$(dc <<< "2k $level 4 / 3.5-p") # 10 to 30 -> -1 to 4 in .25 steps
--exposure="$exposure" \
--output="$out" \
"$f"
--exposure="$exposure" \
--output="$out" \
"$f"
+ convert "$out" -geometry "x$SMALLHEIGHT" "sm/$out"
var exposure = 20;
var input_index = 0;
var exposure = 20;
var input_index = 0;
- $("#pic").attr("src", exposure + "/" + files[input_index]);
+ $("#pic").attr("src", zoom + exposure + "/" + files[input_index]);
+}
+
+function toggle_zoom() {
+ if (zoom) {
+ zoom = "";
+ } else {
+ zoom = "sm/";
+ }
}
$(function() {
setpic();
});
}
$(function() {
setpic();
});
-Mousetrap.bind('z', function() { $("#pic").toggleClass("fit_view"); });
+Mousetrap.bind('z', function() { toggle_zoom(); setpic(); });
+Mousetrap.bind('Z', function() { $("#pic").toggleClass("fit_view"); });
Mousetrap.bind('n', function() { input_index ++; setpic(); });
Mousetrap.bind('p', function() { input_index --; setpic(); });
Mousetrap.bind('b', function() { exposure ++; setpic(); });
Mousetrap.bind('n', function() { input_index ++; setpic(); });
Mousetrap.bind('p', function() { input_index --; setpic(); });
Mousetrap.bind('b', function() { exposure ++; setpic(); });