cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1 | /* |
cristy | 7e41fe8 | 2010-12-04 23:12:08 +0000 | [diff] [blame^] | 2 | Copyright 1999-2011 ImageMagick Studio LLC, a non-profit organization |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 3 | dedicated to making software imaging solutions freely available. |
| 4 | |
| 5 | You may not use this file except in compliance with the License. |
| 6 | obtain a copy of the License at |
| 7 | |
| 8 | http://www.imagemagick.org/script/license.php |
| 9 | |
| 10 | Unless required by applicable law or agreed to in writing, software |
| 11 | distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | See the License for the specific language governing permissions and |
| 14 | limitations under the License. |
| 15 | |
| 16 | MagickCore image compression/decompression methods. |
| 17 | */ |
| 18 | #ifndef _MAGICKCORE_COMPRESS_H |
| 19 | #define _MAGICKCORE_COMPRESS_H |
| 20 | |
| 21 | #if defined(__cplusplus) || defined(c_plusplus) |
| 22 | extern "C" { |
| 23 | #endif |
| 24 | |
| 25 | typedef enum |
| 26 | { |
| 27 | UndefinedCompression, |
| 28 | NoCompression, |
| 29 | BZipCompression, |
| 30 | DXT1Compression, |
| 31 | DXT3Compression, |
| 32 | DXT5Compression, |
| 33 | FaxCompression, |
| 34 | Group4Compression, |
| 35 | JPEGCompression, |
| 36 | JPEG2000Compression, |
| 37 | LosslessJPEGCompression, |
| 38 | LZWCompression, |
| 39 | RLECompression, |
| 40 | ZipCompression, |
| 41 | ZipSCompression, |
| 42 | PizCompression, |
| 43 | Pxr24Compression, |
| 44 | B44Compression, |
| 45 | B44ACompression |
| 46 | } CompressionType; |
| 47 | |
| 48 | typedef struct _Ascii85Info |
| 49 | Ascii85Info; |
| 50 | |
| 51 | extern MagickExport MagickBooleanType |
| 52 | HuffmanDecodeImage(Image *), |
| 53 | HuffmanEncodeImage(const ImageInfo *,Image *,Image *), |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 54 | LZWEncodeImage(Image *,const size_t,unsigned char *), |
| 55 | PackbitsEncodeImage(Image *,const size_t,unsigned char *), |
| 56 | ZLIBEncodeImage(Image *,const size_t,unsigned char *); |
| 57 | |
| 58 | extern MagickExport void |
| 59 | Ascii85Encode(Image *,const unsigned char), |
| 60 | Ascii85Flush(Image *), |
| 61 | Ascii85Initialize(Image *); |
| 62 | |
| 63 | #if defined(__cplusplus) || defined(c_plusplus) |
| 64 | } |
| 65 | #endif |
| 66 | |
| 67 | #endif |