bitblt.h

changeset 53
bb180150e603
parent 48
3d0be1c1c1b2
child 57
b2a2f61135bb
     1.1 --- a/bitblt.h	Wed Feb 19 10:15:16 2003 +0000
     1.2 +++ b/bitblt.h	Wed Feb 19 10:14:49 2003 +0000
     1.3 @@ -1,3 +1,29 @@
     1.4 +/*
     1.5 + * t2p: Create a PDF file from the contents of one or more TIFF
     1.6 + *      bilevel image files.  The images in the resulting PDF file
     1.7 + *      will be compressed using ITU-T T.6 (G4) fax encoding.
     1.8 + *
     1.9 + * bitblt routines
    1.10 + * $Id: bitblt.h,v 1.10 2003/02/19 02:14:44 eric Exp $
    1.11 + * Copyright 2001, 2002, 2003 Eric Smith <eric@brouhaha.com>
    1.12 + *
    1.13 + * This program is free software; you can redistribute it and/or modify
    1.14 + * it under the terms of the GNU General Public License version 2 as
    1.15 + * published by the Free Software Foundation.  Note that permission is
    1.16 + * not granted to redistribute this program under the terms of any
    1.17 + * other version of the General Public License.
    1.18 + *
    1.19 + * This program is distributed in the hope that it will be useful,
    1.20 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
    1.21 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    1.22 + * GNU General Public License for more details.
    1.23 + *
    1.24 + * You should have received a copy of the GNU General Public License
    1.25 + * along with this program; if not, write to the Free Software
    1.26 + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA
    1.27 + */
    1.28 +
    1.29 +
    1.30  typedef struct Point
    1.31  {
    1.32    int32_t x;
    1.33 @@ -40,6 +66,9 @@
    1.34  #define TF_XOR 0x6
    1.35  
    1.36  
    1.37 +void bitblt_init (void);
    1.38 +
    1.39 +
    1.40  Bitmap *create_bitmap (Rect *rect);
    1.41  void free_bitmap (Bitmap *bitmap);
    1.42