1.1 diff -r 7a996a86036d -r bb180150e603 bitblt_table_gen.c 1.2 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.3 +++ b/bitblt_table_gen.c Wed Feb 19 10:14:49 2003 +0000 1.4 @@ -0,0 +1,59 @@ 1.5 +/* 1.6 + * t2p: Create a PDF file from the contents of one or more TIFF 1.7 + * bilevel image files. The images in the resulting PDF file 1.8 + * will be compressed using ITU-T T.6 (G4) fax encoding. 1.9 + * 1.10 + * bitblt table generator 1.11 + * $Id: bitblt_table_gen.c,v 1.1 2003/02/19 02:14:44 eric Exp $ 1.12 + * Copyright 2001, 2002, 2003 Eric Smith <eric@brouhaha.com> 1.13 + * 1.14 + * This program is free software; you can redistribute it and/or modify 1.15 + * it under the terms of the GNU General Public License version 2 as 1.16 + * published by the Free Software Foundation. Note that permission is 1.17 + * not granted to redistribute this program under the terms of any 1.18 + * other version of the General Public License. 1.19 + * 1.20 + * This program is distributed in the hope that it will be useful, 1.21 + * but WITHOUT ANY WARRANTY; without even the implied warranty of 1.22 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 1.23 + * GNU General Public License for more details. 1.24 + * 1.25 + * You should have received a copy of the GNU General Public License 1.26 + * along with this program; if not, write to the Free Software 1.27 + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA 1.28 + */ 1.29 + 1.30 + 1.31 +#include <stdio.h> 1.32 + 1.33 +int main (int argc, char *argv[]) 1.34 +{ 1.35 + int i, j; 1.36 + 1.37 + printf ("/* This file is automatically generated; do not edit */\n"); 1.38 + printf ("\n"); 1.39 + printf ("static const uint8_t bit_reverse_byte [0x100] =\n"); 1.40 + printf ("{\n"); 1.41 + for (i = 0; i < 0x100; i++) 1.42 + { 1.43 + if ((i & 7) == 0) 1.44 + printf (" "); 1.45 + j = (((i & 0x01) << 7) | 1.46 + ((i & 0x02) << 5) | 1.47 + ((i & 0x04) << 3) | 1.48 + ((i & 0x08) << 1) | 1.49 + ((i & 0x10) >> 1) | 1.50 + ((i & 0x20) >> 3) | 1.51 + ((i & 0x40) >> 5) | 1.52 + ((i & 0x80) >> 7)); 1.53 + printf ("0x%02x", j); 1.54 + if (i != 0xff) 1.55 + printf (","); 1.56 + if ((i & 7) == 7) 1.57 + printf ("\n"); 1.58 + else 1.59 + printf (" "); 1.60 + } 1.61 + printf ("};\n"); 1.62 + return (0); 1.63 +}