Skip to content

Commit

Permalink
Add army logos from Army 6 (http://army.infinitythegame.com/)
Browse files Browse the repository at this point in the history
  • Loading branch information
toadchild committed Dec 22, 2018
1 parent 3999ffd commit 6241d00
Show file tree
Hide file tree
Showing 68 changed files with 3,806 additions and 0 deletions.
2 changes: 2 additions & 0 deletions army6/README
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
All files in this directory were downloaded from http://army.infinitythegame.com/
All images and artwork copyright Corvus Belli SLL
21 changes: 21 additions & 0 deletions army6/convert_logos.pl
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#!/opt/local/bin/perl

use strict;
use warnings;

use Image::Magick;

for my $src_name (glob("*.svg")){
my $img = new Image::Magick;
$img->Set(size => '450x450');
$img->Set(background=>"white");
$img->Read($src_name);
$img->Set(density => 150);
$img->Set(units => "PixelsPerInch");

my $dst_name = $src_name;
$dst_name =~ s/svg$/png/;

$img->Strip();
$img->Write($dst_name);
}
Binary file added army6/logo_101.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions army6/logo_101.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added army6/logo_102.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions army6/logo_102.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added army6/logo_103.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 6241d00

Please sign in to comment.