djyarik

Генератор favicon

Dec 25th, 2016
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <?php
  2. // Создание изображения 18*18
  3. $im = imagecreate(18, 18);
  4. // Белый фон, оранжевый текст
  5. $bg = imagecolorallocate($im, 255, 255, 255);
  6. $textcolor = imagecolorallocate($im, 255, 90, 0);
  7. // Надпись в левом верхнем углу
  8. imagestring($im, 100, 0, 0, ucfirst(substr(trim($_SERVER['HTTP_HOST']), 0, 2)), $textcolor);
  9. // Вывод изображения
  10. header('Content-type: image/png');
  11. //imagewbmp($im, 'simpletext.png');
  12. imagepng($im);
  13. imagedestroy($im);
  14. ?>
Add Comment
Please, Sign In to add comment