ソースを参照

Merge pull request #29 from alxf/fix-py-img2txt

Fix py img2txt
tags/v0.99.beta20^2
Sam Hocevar GitHub 3年前
コミット
ba3c9cc77d
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: 4AEE18F83AFDEB23
1個のファイルの変更2行の追加2行の削除
  1. +2
    -2
      python/examples/img2txt.py

+ 2
- 2
python/examples/img2txt.py ファイルの表示

@@ -35,7 +35,7 @@ DEPTH = 4
HELP_MSG = """\
Usage: %s [OPTIONS]... <IMAGE>
Convert IMAGE to any text based available format.
Example: %s -w 80 -f ansi ./caca.png
Example: %s -W 80 -f ansi ./caca.png

Options:
-h, --help This help
@@ -224,7 +224,7 @@ def main():
dit.set_charset(charset)

#create dither
dit.bitmap(cv, 0, 0, width, height, img.tostring())
dit.bitmap(cv, 0, 0, width, height, str(img.tobytes()))

#print export to screen
sys.stdout.write("%s" % cv.export_to_memory(exformat))


読み込み中…
キャンセル
保存