Detect image type from .JPG just like .jpg (etc.).

master
Amitai Schlair 2016-05-08 18:26:15 -04:00
parent e24e6fed62
commit 89af9ecc57
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ sub preprocess (@) {
my $extension;
my $format;
if ($base =~ m/\.([a-z0-9]+)$/) {
if ($base =~ m/\.([a-z0-9]+)$/is) {
$extension = $1;
}
else {