#!/usr/bin/php5 * * This file is a Php port of "examples/import.c" * which is: * Copyright (c) 2006 Jean-Yves Lamoureux * 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. */ if($argc < 2) { die($argv[0] . ": missing argument (filename).\n" . "usage: " . $argv[0] . " []\n"); } $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); ?>