Last change
on this file since 3172 was
3172,
checked in by nico, 12 years ago
|
- Add license headers in sample programs
|
-
Property svn:executable set to
*
|
File size:
1008 bytes
|
Line | |
---|
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 | $img = imagecreatefrompng(dirname(__FILE__)."/logo-caca.png"); |
---|
15 | if (!$img) |
---|
16 | die("Can not open image.\n"); |
---|
17 | |
---|
18 | $dither = caca_create_dither($img); |
---|
19 | if (!$dither) |
---|
20 | die("Can not create dither. Maybe you compiled caca-php without gd support.\n"); |
---|
21 | |
---|
22 | $canvas = caca_create_canvas(0, 0); |
---|
23 | $display = caca_create_display($canvas); |
---|
24 | if (!$display) |
---|
25 | die("Can not create display.\n"); |
---|
26 | |
---|
27 | caca_dither_bitmap($canvas, 0, 0, caca_get_canvas_width($canvas), caca_get_canvas_height($canvas), $dither, $img); |
---|
28 | caca_refresh_display($display); |
---|
29 | |
---|
30 | sleep(5); |
---|
31 | |
---|
32 | ?> |
---|
Note: See
TracBrowser
for help on using the repository browser.