home *** CD-ROM | disk | FTP | other *** search
- /*
- * Copyright (c) 1988 by Sam Leffler.
- * All rights reserved.
- *
- * This file is provided for unrestricted use provided that this
- * legend is included on all tape media and as a part of the
- * software program in whole or part. Users may copy, modify or
- * distribute this file at will.
- */
-
- /*
- CCITT Groups 3 & 4 Facsimile-compatible
- Compression Scheme Support.
- */
-
- #include "tiffio.h"
-
- void TIFFInitCCITTFax3(TIFF *tif)
- {
-
- TIFFError(tif->tif_name,
- "CCITT Group 3 Facsimile-compatible encoding not supported");
- }
-
- void TIFFInitCCITTFax4(TIFF *tif)
- {
-
- TIFFError(tif->tif_name,
- "CCITT Group 4 facsimile-compatible encoding not supported");
- }
-
- /*
- *
- CCITT Group 3 1-D Modified Huffman
- Run Length Encoding Compression Support
- */
-
- CompletionCode TIFFInitCCITTRLE(TIFF *tif)
- {
-
- TIFFError(tif->tif_name, "CCITT Group 3 1-Dimensional Modified %s",
- "Huffman run length encoding not supported");
- return (FALSE);
- }
-
- CompletionCode TIFFInitCCITTRLEW(TIFF *tif)
- {
-
- TIFFError(tif->tif_name, "CCITT Group 3 1-Dimensional Modified %s",
- "Huffman run length encoding with word alignment not supported");
- return (FALSE);
- }