Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 
 
 

55 wiersze
1.3 KiB

  1. #!/usr/bin/php5
  2. <?php
  3. /*
  4. * import libcaca importers test program
  5. * Copyright (c) 2008 Benjamin C. Wiley Sittler <bsittler@gmail.com>
  6. *
  7. * This file is a Php port of "examples/import.c"
  8. * which is:
  9. * Copyright (c) 2006 Jean-Yves Lamoureux <jylam@lnxscene.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. $imports = caca_get_import_list();
  21. if($argc < 2 || $argc > 3)
  22. {
  23. $msg = ($argv[0] . ": wrong argument count\n" .
  24. "usage: " . $argv[0] . " file [<format>]\n" .
  25. "where <format> is one of:\n");
  26. foreach($imports as $format => $name)
  27. $msg .= " \"" . $name . "\" (" . $format . ")\n";
  28. die($msg);
  29. }
  30. $cv = caca_create_canvas(0, 0);
  31. if(! $cv)
  32. {
  33. die("Can't create canvas\n");
  34. }
  35. if(caca_import_file($cv, $argv[1], $argc >= 3 ? $argv[2] : "") < 0)
  36. {
  37. die($argv[0] . ": could not open `" . $argv[1] . "'.\n");
  38. }
  39. $dp = caca_create_display($cv);
  40. if(! $dp)
  41. {
  42. die("Can't create display\n");
  43. }
  44. caca_refresh_display($dp);
  45. caca_get_event($dp, CACA_EVENT_KEY_PRESS, -1);
  46. ?>