소스 검색

copy import.php to www in preparation for htmlizing

tags/v0.99.beta17
Ben Wiley Sittler bsittler 16 년 전
부모
커밋
665f0c98bf
1개의 변경된 파일54개의 추가작업 그리고 0개의 파일을 삭제
  1. +54
    -0
      caca-php/examples/www/import.php

+ 54
- 0
caca-php/examples/www/import.php 파일 보기

@@ -0,0 +1,54 @@
#!/usr/bin/php5
<?php
/*
* import libcaca importers test program
* Copyright (c) 2008 Benjamin C. Wiley Sittler <bsittler@gmail.com>
*
* This file is a Php port of "examples/import.c"
* which is:
* Copyright (c) 2006 Jean-Yves Lamoureux <jylam@lnxscene.org>
* All Rights Reserved
*
* $Id$
*
* This program is free software. It comes without any warranty, to
* the extent permitted by applicable law. You can redistribute it
* and/or modify it under the terms of the Do What The Fuck You Want
* To Public License, Version 2, as published by Sam Hocevar. See
* http://sam.zoy.org/wtfpl/COPYING for more details.
*/

$imports = caca_get_import_list();

if($argc < 2 || $argc > 3)
{
$msg = ($argv[0] . ": wrong argument count\n" .
"usage: " . $argv[0] . " file [<format>]\n" .
"where <format> is one of:\n");
foreach($imports as $format => $name)
$msg .= " \"" . $name . "\" (" . $format . ")\n";
die($msg);
}

$cv = caca_create_canvas(0, 0);
if(! $cv)
{
die("Can't create canvas\n");
}

if(caca_import_file($cv, $argv[1], $argc >= 3 ? $argv[2] : "") < 0)
{
die($argv[0] . ": could not open `" . $argv[1] . "'.\n");
}

$dp = caca_create_display($cv);
if(! $dp)
{
die("Can't create display\n");
}

caca_refresh_display($dp);

caca_get_event($dp, CACA_EVENT_KEY_PRESS, -1);

?>

불러오는 중...
취소
저장