nuttx-apps/tools
chao.an c723283340 make/import: support import zip use relative path
mkimport.sh failure if using relative path:

$ ./tools/mkimport.sh -x ../incubator-nuttx/nuttx-export-9.1.0.zip
unzip:  cannot find or open ../incubator-nuttx/nuttx-export-9.1.0.zip, ../incubator-nuttx/nuttx-export-9.1.0.zip.zip or ../incubator-nuttx/nuttx-export-9.1.0.zip.ZIP.
ERROR: unzip ../incubator-nuttx/nuttx-export-9.1.0.zip failed

Change-Id: Ifc93c5e4dac95ec79a4e909b22ef646fbfe4484d
Signed-off-by: chao.an <anchao@xiaomi.com>
2020-07-03 23:48:00 -05:00
..
bitmap_converter.py Run codespell -w with the latest dictonary again 2020-02-23 07:10:14 -06:00
check-hash.sh Merged in manuelstuehn/nuttx-apps/feature/bsd-portable (pull request #190) 2019-08-10 17:16:33 +00:00
mkimport.sh make/import: support import zip use relative path 2020-07-03 23:48:00 -05:00
mkkconfig.bat Run codespell -w with the latest dictonary again 2020-02-23 07:10:14 -06:00
mkkconfig.sh Remove extra whitespace from files (#43) 2020-01-31 08:29:24 -06:00
mkromfsimg.sh tools/mkromfsimg.sh: Use sed to add const to ROMFS declarations so that they like in FLASH not RAM. 2019-10-07 21:52:08 -06:00
mksymtab.sh tools/mksymtab.sh: remove the quotes in varlist entry coming from *-thunk.S 2020-06-10 21:31:51 +08:00
README.txt Run codespell -w with the latest dictonary again 2020-02-23 07:10:14 -06:00

NxWidgets/tools README File
===========================

bitmap_converter.py
-------------------

  This script converts from any image type supported by Python imaging library to
  the RLE-encoded format used by NxWidgets.

  RLE (Run Length Length) is a very simply encoding that compress quite well
  with certain kinds of images:  Images that that have many pixels of the
  same color adjacent on a row (like simple graphics).  It does not work well
  with photographic images.

  But even simple graphics may not encode compactly if, for example, they have
  been resized.  Resizing an image can create hundreds of unique colors that
  may differ by only a bit or two in the RGB representation.  This "color
  smear" is the result of pixel interpolation (and might be eliminated if
  your graphics software supports resizing via pixel replication instead of
  interpolation).

  When a simple graphics image does not encode well, the symptom is that
  the resulting RLE data structures are quite large.  The palette structure,
  in particular, may have hundreds of colors in it.  There is a way to fix
  the graphic image in this case.  Here is what I do (in fact, I do this
  on all images prior to conversion just to be certain):

  - Open the original image in GIMP.
  - Select the option to select the number of colors in the image.
  - Pick the smallest number of colors that will represent the image
    faithfully.  For most simple graphic images this might be as few as 6
    or 8 colors.
  - Save the image as PNG or other lossless format (NOT jpeg).
  - Then generate the image.