mirror of
https://github.com/haraldk/TwelveMonkeys.git
synced 2025-08-04 03:55:28 -04:00
Updated readme with correct bulleting.
This commit is contained in:
parent
9cab7903ed
commit
5189c7c1e7
84
README.md
84
README.md
@ -39,14 +39,14 @@ Mainstream format support
|
||||
* Adobe
|
||||
* Read-only support for the following file types:
|
||||
* Monochrome, 1 channel, 1 bit
|
||||
** Indexed, 1 channel, 8 bit
|
||||
** Gray, 1 channel, 8 and 16 bit
|
||||
** Duotone, 1 channel, 8 and 16 bit
|
||||
** RGB, 3-4 channels, 8 and 16 bit
|
||||
** CMYK, 4-5 channels, 8 and 16 bit
|
||||
* Indexed, 1 channel, 8 bit
|
||||
* Gray, 1 channel, 8 and 16 bit
|
||||
* Duotone, 1 channel, 8 and 16 bit
|
||||
* RGB, 3-4 channels, 8 and 16 bit
|
||||
* CMYK, 4-5 channels, 8 and 16 bit
|
||||
* Read support for the following compression types:
|
||||
** Uncompressed
|
||||
** RLE (PackBits)
|
||||
* Uncompressed
|
||||
* RLE (PackBits)
|
||||
|
||||
#### TIFF
|
||||
|
||||
@ -54,34 +54,34 @@ Mainstream format support
|
||||
* Write support in progress
|
||||
* Read support for the following "Baseline" TIFF file types:
|
||||
* Class B (Bi-level), all relevant compression types, 1 bit per sample
|
||||
** Class G (Gray), all relevant compression types, 2, 4, 8, 16 or 32 bits per sample, unsigned integer
|
||||
** Class P (Palette/indexed color), all relevant compression types, 1, 2, 4, 8 or 16 bits per sample, unsigned integer
|
||||
** Class R (RGB), all relevant compression types, 8 or 16 bits per sample, unsigned integer
|
||||
* Class G (Gray), all relevant compression types, 2, 4, 8, 16 or 32 bits per sample, unsigned integer
|
||||
* Class P (Palette/indexed color), all relevant compression types, 1, 2, 4, 8 or 16 bits per sample, unsigned integer
|
||||
* Class R (RGB), all relevant compression types, 8 or 16 bits per sample, unsigned integer
|
||||
* Read support for the following TIFF extensions:
|
||||
** Tiling
|
||||
** LZW Compression (type 5)
|
||||
** "Old-style" JPEG Compression (type 6), as a best effort, as the spec is not well-defined
|
||||
** JPEG Compression (type 7)
|
||||
** ZLib (aka Adobe-style Deflate) Compression (type 8)
|
||||
** Deflate Compression (type 32946)
|
||||
** Horizontal differencing Predictor (type 2) for LZW, ZLib, Deflate and PackBits compression
|
||||
** Alpha channel (ExtraSamples type 1/Associated Alpha)
|
||||
** CMYK data (PhotometricInterpretation type 5/Separated)
|
||||
** YCbCr data (PhotometricInterpretation type 6/YCbCr) for JPEG
|
||||
** Planar data (PlanarConfiguration type 2/Planar)
|
||||
** ICC profiles (ICCProfile)
|
||||
** BitsPerSample values up to 16 for most PhotometricInterpretations
|
||||
** Multiple images (pages) in one file
|
||||
* Tiling
|
||||
* LZW Compression (type 5)
|
||||
* "Old-style" JPEG Compression (type 6), as a best effort, as the spec is not well-defined
|
||||
* JPEG Compression (type 7)
|
||||
* ZLib (aka Adobe-style Deflate) Compression (type 8)
|
||||
* Deflate Compression (type 32946)
|
||||
* Horizontal differencing Predictor (type 2) for LZW, ZLib, Deflate and PackBits compression
|
||||
* Alpha channel (ExtraSamples type 1/Associated Alpha)
|
||||
* CMYK data (PhotometricInterpretation type 5/Separated)
|
||||
* YCbCr data (PhotometricInterpretation type 6/YCbCr) for JPEG
|
||||
* Planar data (PlanarConfiguration type 2/Planar)
|
||||
* ICC profiles (ICCProfile)
|
||||
* BitsPerSample values up to 16 for most PhotometricInterpretations
|
||||
* Multiple images (pages) in one file
|
||||
|
||||
#### PICT
|
||||
|
||||
* Legacy format, especially useful for reading OS X clipboard data.
|
||||
* Read and limited write support
|
||||
* Read support for the following file types:
|
||||
** QuickDraw (format support is not complete, but supports most OS X clipboard data as well as RGB pixel data)
|
||||
** QuickDraw bitmap
|
||||
** QuickDraw pixmap
|
||||
** QuickTime stills
|
||||
* QuickDraw (format support is not complete, but supports most OS X clipboard data as well as RGB pixel data)
|
||||
* QuickDraw bitmap
|
||||
* QuickDraw pixmap
|
||||
* QuickTime stills
|
||||
* Writing is limited to RGB pixel data
|
||||
|
||||
#### IFF
|
||||
@ -89,17 +89,17 @@ Mainstream format support
|
||||
* Legacy format, allows reading popular image from the Commodore Amiga computer.
|
||||
* Read and write support
|
||||
* Read support for the following file types:
|
||||
** ILBM Indexed color, 1-8 interleaved bit planes, including 6 bit EHB
|
||||
** ILBM Gray, 8 bit interleaved bit planes
|
||||
** ILBM RGB, 24 and 32 bit interleaved bit planes
|
||||
** ILBM HAM6 and HAM8
|
||||
** PBM Indexed color, 1-8 bit,
|
||||
** PBM Gray, 8 bit
|
||||
** PBM RGB, 24 and 32 bit
|
||||
** PBM HAM6 and HAM8
|
||||
* ILBM Indexed color, 1-8 interleaved bit planes, including 6 bit EHB
|
||||
* ILBM Gray, 8 bit interleaved bit planes
|
||||
* ILBM RGB, 24 and 32 bit interleaved bit planes
|
||||
* ILBM HAM6 and HAM8
|
||||
* PBM Indexed color, 1-8 bit,
|
||||
* PBM Gray, 8 bit
|
||||
* PBM RGB, 24 and 32 bit
|
||||
* PBM HAM6 and HAM8
|
||||
* Support for the following compression types:
|
||||
** Uncompressed
|
||||
** RLE (PackBits)
|
||||
* Uncompressed
|
||||
* RLE (PackBits)
|
||||
|
||||
Icon/other formats
|
||||
|
||||
@ -110,10 +110,10 @@ Icon/other formats
|
||||
#### ICO
|
||||
|
||||
* Read support for the following file types:
|
||||
** ICO Indexed color, 1, 4 and 8 bit
|
||||
** ICO RGB, 16, 24 and 32 bit
|
||||
** CUR Indexed color, 1, 4 and 8 bit
|
||||
** CUR RGB, 16, 24 and 32 bit
|
||||
* ICO Indexed color, 1, 4 and 8 bit
|
||||
* ICO RGB, 16, 24 and 32 bit
|
||||
* CUR Indexed color, 1, 4 and 8 bit
|
||||
* CUR RGB, 16, 24 and 32 bit
|
||||
|
||||
#### Thumbs.db
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user