diff options
Diffstat (limited to 'web/nms.gathering.org/nettkart.pl')
-rwxr-xr-x | web/nms.gathering.org/nettkart.pl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/web/nms.gathering.org/nettkart.pl b/web/nms.gathering.org/nettkart.pl index b9517f8..f6eb04d 100755 --- a/web/nms.gathering.org/nettkart.pl +++ b/web/nms.gathering.org/nettkart.pl @@ -15,7 +15,7 @@ my $dbh = nms::db_connect(); GD::Image->trueColor(1); my ($img, $text_img); -my $img = GD::Image->new('bg07.png'); +my $img = GD::Image->new('tg14-salkart.png'); if ($night) { my ($width, $height) = ($img->width, $img->height); @@ -31,7 +31,7 @@ if ($night) { my $blank = $text_img->colorAllocateAlpha(0, 0, 0, 127); $text_img->filledRectangle(0, 0, $text_img->width - 1, $text_img->height - 1, $blank); } else { - $img = GD::Image->new('bg07.png'); + $img = GD::Image->new('tg14-salkart.png'); $text_img = $img; } @@ -113,7 +113,7 @@ if ($night) { $magick->Gamma(gamma=>1.90); my $m2 = Image::Magick->new; - $m2->Read('bg07.png'); + $m2->Read('tg14-salkart.png'); $m2->Negate(); $m2->Composite(image=>$magick, compose=>'Atop'); |