-
-
Save ryjkov/1510346 to your computer and use it in GitHub Desktop.
Image resizer and marker
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl -w | |
use strict; | |
=head1 DESCRIPTION | |
Make small pictures from big ones. | |
=head1 USAGE | |
resize-mark.pl | |
[ --color=text_color ] | |
[ --gap=gap_between_text_chunks ] | |
[ --name=author_name ] | |
[ --prefix=small_pictures_filenames_prefix ] | |
[ --site=site_of_author ] | |
[ --size=size_of_small_pictures ] | |
files | |
=head2 Arguments | |
C<color> – valid ImageMagick color: english word (C<white>, C<black> etc) | |
or digital value (C<#RGB>, C<#RGBA>, C<#RRGGBB>, C<#RRGGBBAA>). | |
Default value is C<#fff2> (⅞ transparent white). | |
C<gap> – gap between text chunks in pixels. Default value is C<10>. | |
C<prefix> – small pictures filenames prefix, default value is C<small.> | |
C<name> – name of author, default value is name of current user. | |
=cut | |
use Image::ExifTool ':Public'; | |
use Image::Magick; | |
use Getopt::Long; | |
# Constants | |
my %preferred_fonts = ( | |
'date' => [ qw/ DejaVuSans DejaVu-Sans Bitstream-Vera-Sans BitstreamVeraSans Verdana / ], # Normal width | |
'name' => [ qw/ DejaVuSansC DejaVu-Sans-Condensed Tahoma / ], # Narrow | |
'site' => [ qw/ DejaVuSansB BitstreamVeraSansB VerdanaB TahomaB / ], # Bold | |
); | |
my $color = '#fff2'; | |
my $gap = 10; | |
my $name = (getpwuid $>)[6]; | |
$name =~ s/,+$//; | |
my $prefix = 'small.'; | |
my $site = 'shoorick.ru'; | |
my $size = '50%'; | |
# Override with options | |
GetOptions( | |
'color:s' => \$color, | |
'gap:i' => \$gap, | |
'name:s' => \$name, | |
'prefix:s' => \$prefix, | |
'site:s' => \$site, | |
'size:s' => \$size, | |
); | |
# Try to find suitable fonts | |
my $image = new Image::Magick; | |
my @available_fonts = $image->QueryFont(); | |
my ( %seen, %fonts ); | |
map { $seen{$_} = 1 } @available_fonts; | |
while ( my ( $scope, $list ) = each %preferred_fonts ) { | |
foreach ( @$list ) { | |
$fonts{ $scope } = $_ | |
and last | |
if $seen{$_}; | |
} # foreach | |
} # while | |
foreach my $file ( @ARGV ) { | |
my $info = ImageInfo($file, 'CreateDate'); | |
my $date = $$info{'CreateDate'}; | |
my $new_file_name = $file; | |
$new_file_name =~ s{([^/]+)$}{$prefix$1}; | |
$date =~ s/^(\d{4}):(\d{2}):(\d{2}).*/$3.$2.$1/; | |
my $p = new Image::Magick or next; | |
$p->Read( $file ); | |
$p->AutoOrient; | |
$p->Resize( | |
'geometry' => $size, | |
'filter' => 'Lanczos', | |
'blur' => 0.5, | |
); | |
my ( $width, $height ) = $p->Get('width', 'height'); | |
my ( $x, $y ) = ( $width - $gap, $height - $gap ); | |
$p->Set( | |
'pointsize' => 12, | |
'fill' => $color, | |
); | |
$p->Annotate( | |
'font' => $fonts{'name'}, | |
'text' => $name, | |
'rotate' => -90, | |
'x' => $x, | |
'y' => $y, | |
); | |
$y -= ( | |
$p->QueryFontMetrics( | |
'font' => $fonts{'name'}, | |
'text' => $name, | |
) | |
)[4] + $gap; | |
$p->Annotate( | |
'font' => $fonts{'site'}, | |
'text' => $site, | |
'rotate' => -90, | |
'x' => $x, | |
'y' => $y, | |
); | |
$y -= ( | |
$p->QueryFontMetrics( | |
'font' => $fonts{'site'}, | |
'text' => $site, | |
) | |
)[4] + $gap; | |
$p->Annotate( | |
'font' => $fonts{'date'}, | |
'text' => $date, | |
'rotate' => -90, | |
'x' => $x, | |
'y' => $y, | |
); | |
$p->Sharpen( | |
'radius' => 1, | |
'sigma' => 2, | |
); | |
$p->Write($new_file_name); | |
print "$file - $date\n"; | |
} # foreach | |
=head1 AUTHOR | |
Alexander Sapozhnikov | |
L<< http://shoorick.ru/ >> | |
[email protected] | |
=head1 SEE ALSO | |
L<< https://gist.github.com/gists/600484 >> | |
=cut |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment