X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/6db907e90cee931c98be2684ba5deed698b1ebb6..HEAD:/tools/mkimgthumb diff --git a/tools/mkimgthumb b/tools/mkimgthumb index 32ae1a3..e9d6eb2 100755 --- a/tools/mkimgthumb +++ b/tools/mkimgthumb @@ -27,20 +27,25 @@ for (keys %opt) { push @ffs, my $ff = [$_]; my $r = $opt{$_}; push @{$ff}, -quality => $1 if $r =~ s/@(\d+)//; - push @{$ff}, -resize => "$r^", -extent => $r; + push @{$ff}, -resize => !/\dx\d+$/ ? $_ : ("$_^", -extent => $_) + for split / /, $r; } +my $target = '..'; +$target = pop @ARGV if @ARGV >= 2 and -d $ARGV[-1]; + my $failcount = 0; for my $src (@ARGV) { my ($name, @cmds) = split /:(? or next; } s/\\(.)/$1/g for @cmds; - say $name; + print ':'; if (@cmds and $cmds[0] =~ /^\d/) { # crop shorthand from initial dimension argument @@ -54,14 +59,18 @@ for my $src (@ARGV) { my $image = Shiar_Sheet::ImagePrep->new($src); for (@ffs) { my ($ff, @ffcmds) = @{$_}; - $image->convert("../$name.$ff", [@cmds, @ffcmds]); + print " $ff"; + $image->convert("$target/$name.$ff", [@cmds, @ffcmds]); } 1; } or do { - warn "error creating image:\n"; + say ' FAILED'; warn ref $@ eq 'ARRAY' ? $@->[1] : $@ if $@; $failcount++; }; } +continue { + say ''; +} exit $failcount;