calino: INFO: Usage: extract-image-data-2d [options]

  Options:
    --decompress
      Whether to decompress data during extraction (ignored if the output is 
      PNG). 
      Default: true
  * --file
      The texture file
  * --output-directory
      The output directory
    --output-format
      The output format
      Default: RAW
      Possible Values: [RAW, PNG]
    --verbose
      Set the minimum logging verbosity level.
      Default: info
      Possible Values: [trace, debug, info, warn, error]

  The "extract-image-data-2d" command copies image data out of a
  2D texture file.

  For a given output directory D, the command will write each of
  the mipmap levels of the input image to files in D. The name
  of each output file will be m, followed by a zero-padded
  level number, followed by an appropriate file suffix such as
  .png or .raw.

  For example:

  $ calino extract-image-data-2d --output-directory /tmp/out ...
  calino: INFO: writing level 7 to /tmp/out/m007.png
  calino: INFO: writing level 6 to /tmp/out/m006.png
  calino: INFO: writing level 5 to /tmp/out/m005.png
  calino: INFO: writing level 4 to /tmp/out/m004.png
  calino: INFO: writing level 3 to /tmp/out/m003.png
  calino: INFO: writing level 2 to /tmp/out/m002.png
  calino: INFO: writing level 1 to /tmp/out/m001.png
  calino: INFO: writing level 0 to /tmp/out/m000.png

