1 | #!/usr/bin/php5 |
---|
2 | <?php |
---|
3 | /* |
---|
4 | * dithering.php sample program for libcaca php binding |
---|
5 | * Copyright (c) 2008 Nicolas Vion <nico@yojik.eu> |
---|
6 | * |
---|
7 | * This program is free software. It comes without any warranty, to |
---|
8 | * the extent permitted by applicable law. You can redistribute it |
---|
9 | * and/or modify it under the terms of the Do What The Fuck You Want |
---|
10 | * To Public License, Version 2, as published by Sam Hocevar. See |
---|
11 | * http://sam.zoy.org/wtfpl/COPYING for more details. |
---|
12 | */ |
---|
13 | |
---|
14 | if (!posix_isatty(STDOUT)) |
---|
15 | die("You have to run this program with php-cli!\n"); |
---|
16 | |
---|
17 | $img = imagecreatefrompng(dirname(__FILE__)."/logo-caca.png"); |
---|
18 | if (!$img) |
---|
19 | die("Can not open image.\n"); |
---|
20 | |
---|
21 | $dither = caca_create_dither($img); |
---|
22 | if (!$dither) |
---|
23 | die("Can not create dither. Maybe you compiled caca-php without gd support.\n"); |
---|
24 | |
---|
25 | $canvas = caca_create_canvas(0, 0); |
---|
26 | $display = caca_create_display($canvas); |
---|
27 | if (!$display) |
---|
28 | die("Can not create display.\n"); |
---|
29 | |
---|
30 | caca_dither_bitmap($canvas, 0, 0, caca_get_canvas_width($canvas), caca_get_canvas_height($canvas), $dither, $img); |
---|
31 | caca_refresh_display($display); |
---|
32 | |
---|
33 | caca_get_event($display, CACA_EVENT_KEY_PRESS, -1); |
---|
34 | |
---|
35 | ?> |
---|