您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

49 行
1.2 KiB

  1. #!/usr/bin/php5
  2. <?php
  3. /*
  4. * truecolor truecolor canvas features
  5. * Copyright (c) 2008 Benjamin C. Wiley Sittler <bsittler@gmail.com>
  6. *
  7. * This file is a Php port of "examples/truecolor.c"
  8. * which is:
  9. * Copyright (c) 2006 Sam Hocevar <sam@zoy.org>
  10. * All Rights Reserved
  11. *
  12. * $Id$
  13. *
  14. * This program is free software. It comes without any warranty, to
  15. * the extent permitted by applicable law. You can redistribute it
  16. * and/or modify it under the terms of the Do What The Fuck You Want
  17. * To Public License, Version 2, as published by Sam Hocevar. See
  18. * http://sam.zoy.org/wtfpl/COPYING for more details.
  19. */
  20. $cv = caca_create_canvas(32, 16);
  21. if(!$cv) {
  22. die("Failed to create canvas\n");
  23. }
  24. $dp = caca_create_display($cv);
  25. if(!$dp) {
  26. die("Failed to create display\n");
  27. }
  28. for($y = 0; $y < 16; $y++)
  29. for($x = 0; $x < 16; $x++)
  30. {
  31. $bgcolor = 0xff00 | ($y << 4) | $x;
  32. $fgcolor = 0xf000 | ((15 - $y) << 4) | ((15 - $x) << 8);
  33. caca_set_color_argb($cv, $fgcolor, $bgcolor);
  34. caca_put_str($cv, $x * 2, $y, "CA");
  35. }
  36. caca_set_color_ansi($cv, CACA_WHITE, CACA_LIGHTBLUE);
  37. caca_put_str($cv, 2, 1, " truecolor libcaca ");
  38. caca_refresh_display($dp);
  39. caca_get_event($dp, CACA_EVENT_KEY_PRESS, -1);
  40. ?>