From 5487b4aa7e97c2b28d361729834a2c20b8f6fbd2 Mon Sep 17 00:00:00 2001 From: kris Date: Mon, 15 Mar 2021 17:50:56 +0000 Subject: [PATCH] Note disk space requirements and tweak usage --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3aa406e..01bdbf6 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,8 @@ python setup.py build_ext --inplace python precompute_distance.py --all # or --palette ``` +NOTE: Building all distance matrices requires 4.75GB of free disk space! + ## Usage Then, to convert an image, the simplest usage is: @@ -28,7 +30,9 @@ Then, to convert an image, the simplest usage is: python convert.py ``` -By default preview image will be shown after conversion, and saved as `-preview.png`, and `` contains the double-hires image data in a form suitable for transfer to an Apple II disk image. The 16k output consists of 8k AUX data first, 8K MAIN data second (this matches the output format of other DHGR image converters). i.e. if loaded at 0x2000, the contents of 0x2000..0x3fff should be moved to 0x4000..0x5fff in AUX memory, and the image can be viewed on DHGR page 2. +`` contains the double-hires image data in a form suitable for transfer to an Apple II disk image. The 16k output consists of 8k AUX data first, 8K MAIN data second (this matches the output format of other DHGR image converters). i.e. if loaded at 0x2000, the contents of 0x2000..0x3fff should be moved to 0x4000..0x5fff in AUX memory, and the image can be viewed on DHGR page 2. + +By default, a preview image will be shown after conversion, and saved as `-preview.png` For other available options, use `python convert.py --help`