You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

61 lines
1.8 KiB

  1. #!/usr/bin/php5
  2. <?php
  3. /*
  4. * colors display all possible libcaca colour pairs
  5. * Copyright (c) 2008 Benjamin C. Wiley Sittler <bsittler@gmail.com>
  6. *
  7. * This file is a Php port of "examples/colors.c"
  8. * Copyright (c) 2003-2004 Sam Hocevar <sam@zoy.org>
  9. * All Rights Reserved
  10. *
  11. * $Id$
  12. *
  13. * This program is free software. It comes without any warranty, to
  14. * the extent permitted by applicable law. You can redistribute it
  15. * and/or modify it under the terms of the Do What The Fuck You Want
  16. * To Public License, Version 2, as published by Sam Hocevar. See
  17. * http://sam.zoy.org/wtfpl/COPYING for more details.
  18. */
  19. $cv = caca_create_canvas(80, 24);
  20. if(!$cv)
  21. {
  22. die("Failed to create canvas\n");
  23. }
  24. $dp = caca_create_display($cv);
  25. if(!$dp)
  26. {
  27. die("Failed to create display\n");
  28. }
  29. caca_set_color_ansi($cv, CACA_LIGHTGRAY, CACA_BLACK);
  30. caca_clear_canvas($cv);
  31. for($i = 0; $i < 16; $i++)
  32. {
  33. caca_set_color_ansi($cv, CACA_LIGHTGRAY, CACA_BLACK);
  34. caca_put_str($cv, 3, $i + ($i >= 8 ? 3 : 2), "ANSI " . $i);
  35. for($j = 0; $j < 16; $j++)
  36. {
  37. caca_set_color_ansi($cv, $i, $j);
  38. caca_put_str($cv, ($j >= 8 ? 13 : 12) + $j * 4, $i + ($i >= 8 ? 3 : 2),
  39. "Aaホ");
  40. }
  41. }
  42. caca_set_color_ansi($cv, CACA_LIGHTGRAY, CACA_BLACK);
  43. caca_put_str($cv, 3, 20, "This is bold This is blink This is italics This is underline");
  44. caca_set_attr($cv, CACA_BOLD, CACA_DEFAULT);
  45. caca_put_str($cv, 3 + 8, 20, "bold");
  46. caca_set_attr($cv, CACA_BLINK, CACA_DEFAULT);
  47. caca_put_str($cv, 3 + 24, 20, "blink");
  48. caca_set_attr($cv, CACA_ITALICS, CACA_DEFAULT);
  49. caca_put_str($cv, 3 + 41, 20, "italics");
  50. caca_set_attr($cv, CACA_UNDERLINE, CACA_DEFAULT);
  51. caca_put_str($cv, 3 + 60, 20, "underline");
  52. caca_refresh_display($dp);
  53. caca_get_event($dp, CACA_EVENT_KEY_PRESS, -1);
  54. ?>