您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

25 行
548 B

  1. #!/usr/bin/php5
  2. <?php
  3. $img = imagecreatefrompng(dirname(__FILE__)."/logo-caca.png");
  4. if (!$img)
  5. die("Can not open image.\n");
  6. $dither = caca_create_dither_gd($img);
  7. if (!$dither)
  8. die("Can not create dither. Maybe this image is not truecolor.\n");
  9. $canvas = caca_create_canvas(0, 0);
  10. $display = caca_create_display($canvas);
  11. if (!$display)
  12. die("Can not create display.\n");
  13. caca_dither_bitmap_gd($canvas, 0, 0, caca_get_canvas_width($canvas), caca_get_canvas_height($canvas), $dither, $img);
  14. caca_refresh_display($display);
  15. sleep(5);