add make-sizes
This commit is contained in:
parent
ae7e6c796d
commit
e60a61ee76
1 changed files with 80 additions and 0 deletions
80
bin/make-sizes
Executable file
80
bin/make-sizes
Executable file
|
@ -0,0 +1,80 @@
|
|||
#!/usr/bin/env raku
|
||||
|
||||
enum Format <DEFAULT skip png webp jpg>;
|
||||
|
||||
#| resize images for uploading to gallery sites
|
||||
unit sub MAIN(
|
||||
#| number of concurrent jobs (default min{10, # cores})
|
||||
Int :j(:$jobs) = min(10, $*KERNEL.cpu-cores),
|
||||
#| format to use for mastodon (png, webp, jpg, skip)
|
||||
Format :m(:$mastodon) is copy = DEFAULT,
|
||||
#| format to use for itaku
|
||||
Format :i(:$itaku) is copy = DEFAULT,
|
||||
#| format to use for furaffinity/weasyl
|
||||
Format :f(:$furaffinity) is copy = DEFAULT,
|
||||
#| webp/jpg quality setting (default 98)
|
||||
Int :Q(:$quality) = 98,
|
||||
#| only run conversions explicitly mentioned
|
||||
Bool :O(:$only) = False,
|
||||
Bool :n(:$dry-run) = False,
|
||||
Bool :v(:$verbose) = False,
|
||||
#| out dir, default ./out
|
||||
IO :o(:$outdir) = 'out'.IO,
|
||||
#| defaults to all *.png & *.jpg files in the current dir
|
||||
*@files,
|
||||
);
|
||||
|
||||
sub cmd(*@args) {
|
||||
say "> @args[]" if $dry-run || $verbose;
|
||||
run @args unless $dry-run;
|
||||
}
|
||||
|
||||
sub verbose(*@args) { say "> @args[]" if $verbose }
|
||||
|
||||
# fixup args
|
||||
|
||||
die "furaffinity/weasyl don't know what webp are" if $furaffinity == webp;
|
||||
|
||||
$mastodon ||= $only ?? skip !! webp;
|
||||
$itaku ||= $only ?? skip !! webp;
|
||||
$furaffinity ||= $only ?? skip !! png;
|
||||
|
||||
(@files .= map: *.IO) ||= $*CWD.dir: test => /:i \.[jpe?g|png]$/;
|
||||
for @files { die "$_ is not a regular file" unless .f; }
|
||||
|
||||
|
||||
# running imagemagick (and oxipng sometimes) 🪄
|
||||
|
||||
sub convert($in, $site, $format, *@flags) {
|
||||
my $out = $outdir.child($in.basename).extension("$site.$format");
|
||||
cmd <convert>, $in, @flags, $out;
|
||||
cmd <oxipng -q>, $out if $format == png;
|
||||
}
|
||||
|
||||
constant $SIZE = 2800;
|
||||
constant $SQUARE = "{$SIZE}x{$SIZE}";
|
||||
constant $MASTO-SIZE = "{1280**2}@";
|
||||
|
||||
my @sites = [
|
||||
{:name<mastodon>, :format($mastodon), :size($MASTO-SIZE)},
|
||||
{:name<itaku>, :format($itaku), :size($SQUARE)},
|
||||
{:name<furaffinity>, :format($furaffinity), :size($SQUARE)},
|
||||
].grep: *<format> != skip;
|
||||
|
||||
|
||||
# go go go
|
||||
|
||||
sub parallel(@vals, &f) {
|
||||
my $sem = Semaphore.new: $jobs;
|
||||
my @tasks = @vals.map: { start { $sem.acquire; f $_; $sem.release } };
|
||||
@tasks».result;
|
||||
}
|
||||
|
||||
cmd <mkdir -p>, $outdir;
|
||||
|
||||
my @todo = @files X @sites;
|
||||
parallel @todo, -> ($file, % (:$name, :$format, :$size)) {
|
||||
state $i++;
|
||||
say "[$i/@todo.elems()] $name $file.basename()";
|
||||
convert $file, $name, $format, '-resize', $size, '-quality', $quality;
|
||||
};
|
Loading…
Add table
Reference in a new issue