Skip to content

Commit

Permalink
Set scaling threshold high enough that it does not trigger for the mo…
Browse files Browse the repository at this point in the history
…torcycle marker.
  • Loading branch information
toadchild committed May 16, 2016
1 parent 3f3bbea commit 799f2de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doconversion.pl
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@

my $resize = "";
my ($xres, $yres) = imgsize($infile);
if($xres > 350){
my $width = 350;
if($xres > 450){
my $width = 450;
my $height = $yres * $width / $xres;
$resize = "-resize ".$width."x".$height;
}
Expand Down

0 comments on commit 799f2de

Please sign in to comment.