소스 검색

* Remove white and yellow colors for letters

tags/v0.99.beta17
Nicolas Vion nico 16 년 전
부모
커밋
28a91b7d51
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      caca-php/examples/www/figlet.php

+ 1
- 1
caca-php/examples/www/figlet.php 파일 보기

@@ -44,7 +44,7 @@ function show_figlet($str, $font) {
$chars = unistr_to_ords($str);
$color = 0;
foreach ($chars as $c) {
caca_set_color_ansi($cv, 1 + (($color += 4) % 15), CACA_WHITE);
caca_set_color_ansi($cv, 1 + (($color += 1) % 13), CACA_WHITE);
caca_put_figchar($cv, $c);
}



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