tif_jbig.c 5.87 KB
Newer Older
1
/* $Id: tif_jbig.c,v 1.15 2010-03-10 18:56:48 bfriesen Exp $ */
2 3 4 5 6

/*
 * Copyright (c) 1988-1997 Sam Leffler
 * Copyright (c) 1991-1997 Silicon Graphics, Inc.
 *
7
 * Permission to use, copy, modify, distribute, and sell this software and
8 9 10 11 12 13
 * its documentation for any purpose is hereby granted without fee, provided
 * that (i) the above copyright notices and this permission notice appear in
 * all copies of the software and related documentation, and (ii) the names of
 * Sam Leffler and Silicon Graphics may not be used in any advertising or
 * publicity relating to the software without the specific, prior written
 * permission of Sam Leffler and Silicon Graphics.
14 15 16 17 18
 *
 * THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
 * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
 *
19 20 21
 * IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
 * ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
 * OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
22 23
 * WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
 * LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
24 25 26 27 28 29 30 31
 * OF THIS SOFTWARE.
 */

/*
 * TIFF Library.
 *
 * JBIG Compression Algorithm Support.
 * Contributed by Lee Howard <faxguy@deanox.com>
32
 *
33 34 35 36 37 38 39 40 41
 */

#include "tiffiop.h"

#ifdef JBIG_SUPPORT
#include "jbig.h"

static int JBIGSetupDecode(TIFF* tif)
{
42 43 44 45 46
    if (TIFFNumberOfStrips(tif) != 1)
    {
        TIFFErrorExt(tif->tif_clientdata, "JBIG", "Multistrip images not supported in decoder");
        return 0;
    }
47

48
    return 1;
49 50
}

51
static int JBIGDecode(TIFF* tif, uint8* buffer, tmsize_t size, uint16 s)
52
{
53 54 55 56
    struct jbg_dec_state decoder;
    int decodeStatus = 0;
    unsigned char* pImage = NULL;
    (void) size, (void) s;
57

58 59 60 61
    if (isFillOrder(tif, tif->tif_dir.td_fillorder))
    {
        TIFFReverseBits(tif->tif_rawdata, tif->tif_rawdatasize);
    }
62

63
    jbg_dec_init(&decoder);
64 65

#if defined(HAVE_JBG_NEWLEN)
66 67 68 69 70 71 72 73 74 75 76
    jbg_newlen(tif->tif_rawdata, (size_t)tif->tif_rawdatasize);
    /*
     * I do not check the return status of jbg_newlen because even if this
     * function fails it does not necessarily mean that decoding the image
     * will fail.  It is generally only needed for received fax images
     * that do not contain the actual length of the image in the BIE
     * header.  I do not log when an error occurs because that will cause
     * problems when converting JBIG encoded TIFF's to
     * PostScript.  As long as the actual image length is contained in the
     * BIE header jbg_dec_in should succeed.
     */
77 78
#endif /* HAVE_JBG_NEWLEN */

79 80 81 82 83 84 85 86 87 88 89 90
    decodeStatus = jbg_dec_in(&decoder, (unsigned char*)tif->tif_rawdata,
                  (size_t)tif->tif_rawdatasize, NULL);
    if (JBG_EOK != decodeStatus)
    {
        /*
         * XXX: JBG_EN constant was defined in pre-2.0 releases of the
         * JBIG-KIT. Since the 2.0 the error reporting functions were
         * changed. We will handle both cases here.
         */
        TIFFErrorExt(tif->tif_clientdata,
                 "JBIG", "Error (%d) decoding: %s",
                 decodeStatus,
91
#if defined(JBG_EN)
92
                 jbg_strerror(decodeStatus, JBG_EN)
93
#else
94
                 jbg_strerror(decodeStatus)
95
#endif
96 97 98 99 100 101 102 103
                 );
        return 0;
    }

    pImage = jbg_dec_getimage(&decoder, 0);
    _TIFFmemcpy(buffer, pImage, jbg_dec_getsize(&decoder));
    jbg_dec_free(&decoder);
    return 1;
104 105
}

106
static int JBIGSetupEncode(TIFF* tif)
107
{
108 109 110 111 112
    if (TIFFNumberOfStrips(tif) != 1)
    {
        TIFFErrorExt(tif->tif_clientdata, "JBIG", "Multistrip images not supported in encoder");
        return 0;
    }
113

114
    return 1;
115 116
}

117
static int JBIGCopyEncodedData(TIFF* tif, unsigned char* pp, size_t cc, uint16 s)
118
{
119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142
    (void) s;
    while (cc > 0)
    {
        tmsize_t n = (tmsize_t)cc;

        if (tif->tif_rawcc + n > tif->tif_rawdatasize)
        {
            n = tif->tif_rawdatasize - tif->tif_rawcc;
        }

        assert(n > 0);
        _TIFFmemcpy(tif->tif_rawcp, pp, n);
        tif->tif_rawcp += n;
        tif->tif_rawcc += n;
        pp += n;
        cc -= (size_t)n;
        if (tif->tif_rawcc >= tif->tif_rawdatasize &&
            !TIFFFlushData1(tif))
        {
            return (-1);
        }
    }

    return (1);
143 144
}

145
static void JBIGOutputBie(unsigned char* buffer, size_t len, void* userData)
146
{
147
    TIFF* tif = (TIFF*)userData;
148

149 150 151 152
    if (isFillOrder(tif, tif->tif_dir.td_fillorder))
    {
        TIFFReverseBits(buffer, (tmsize_t)len);
    }
153

154
    JBIGCopyEncodedData(tif, buffer, len, 0);
155 156
}

157
static int JBIGEncode(TIFF* tif, uint8* buffer, tmsize_t size, uint16 s)
158
{
159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178
    TIFFDirectory* dir = &tif->tif_dir;
    struct jbg_enc_state encoder;

    (void) size, (void) s;

    jbg_enc_init(&encoder,
             dir->td_imagewidth,
             dir->td_imagelength,
             1,
             &buffer,
             JBIGOutputBie,
             tif);
    /*
     * jbg_enc_out does the "real" encoding.  As data is encoded,
     * JBIGOutputBie is called, which writes the data to the directory.
     */
    jbg_enc_out(&encoder);
    jbg_enc_free(&encoder);

    return 1;
179 180 181 182
}

int TIFFInitJBIG(TIFF* tif, int scheme)
{
183
    assert(scheme == COMPRESSION_JBIG);
184

185 186 187 188 189 190 191
    /*
     * These flags are set so the JBIG Codec can control when to reverse
     * bits and when not to and to allow the jbig decoder and bit reverser
     * to write to memory when necessary.
     */
    tif->tif_flags |= TIFF_NOBITREV;
    tif->tif_flags &= ~TIFF_MAPPED;
192

193 194 195
    /* Setup the function pointers for encode, decode, and cleanup. */
    tif->tif_setupdecode = JBIGSetupDecode;
    tif->tif_decodestrip = JBIGDecode;
196

197 198
    tif->tif_setupencode = JBIGSetupEncode;
    tif->tif_encodestrip = JBIGEncode;
199

200
    return 1;
201 202 203 204 205 206 207 208 209 210 211 212 213
}

#endif /* JBIG_SUPPORT */

/* vim: set ts=8 sts=8 sw=8 noet: */

/*
 * Local Variables:
 * mode: c
 * c-basic-offset: 8
 * fill-column: 78
 * End:
 */