diff --git a/README.md b/README.md index ff92855..4f7fc6d 100644 --- a/README.md +++ b/README.md @@ -29,6 +29,8 @@ Type `python3 main.py -h` into the commandline to display the help message. `-s --sampleSize` Size of the samples, default is 16x16 (the output will be 16x smaller) enter as XxY or just X eg. 12x15 or just 12 +`-os --outputSize` Instead of messing with sampleSizes you can specify the size of the output image directly (in characters.) Same as sample size: WxH eg. 40x50 (40 wide, 50 tall) + **Save to a file** `-o --output` specify output file it can be then displayed with `cat output.txt` with all the colors diff --git a/utils/argparseArguments.yaml b/utils/argparseArguments.yaml index d03c2cb..62a80a5 100644 --- a/utils/argparseArguments.yaml +++ b/utils/argparseArguments.yaml @@ -15,7 +15,7 @@ Arguments: help: "Size of the samples, default is 16x16 (the output will be 16x smaller) enter as XxY or just X (XxX)" outputSize: default: null - help: "instead of sampleSize, set the size you want to image to be. Enter as WxH" + help: "instead of sampleSize, set the size you want to image to be in characters. Enter as WxH." contrastbreak: default: 128 help: "Border of darkness levels between making a pixel darker or brighter (0-255 recomended range 50-200)"