summaryrefslogtreecommitdiff
path: root/Styles-generator.php
diff options
context:
space:
mode:
Diffstat (limited to 'Styles-generator.php')
-rw-r--r--Styles-generator.php22
1 files changed, 0 insertions, 22 deletions
diff --git a/Styles-generator.php b/Styles-generator.php
deleted file mode 100644
index 0cc5181..0000000
--- a/Styles-generator.php
+++ /dev/null
@@ -1,22 +0,0 @@
-<?
-
-include("Config.BigLine.php");
-
-define(WIDTH, 100);
-define(HEIGHT, 50);
-
-foreach ($Styles as $style => $font)
-{
- $img=imagecreatetruecolor(WIDTH, HEIGHT);
- imagealphablending($img, FALSE);
- imagesavealpha($img, TRUE);
-
- $transparent=imagecolorallocatealpha($img, 255, 255, 255, 127);
- $black=imagecolorallocatealpha($img, 0, 0, 0, 0);
-
- imagefilledrectangle($img, 0, 0, WIDTH, HEIGHT, $transparent);
- imagettftext($img, 30, 3, 0, HEIGHT * 80/100 , $black, "".$font, $style);
- imagepng($img, "styles/$style.png");
-}
-
-?>