1.1 diff -r 5d3d2dccb3ff -r 82d6f19753d6 README 1.2 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.3 +++ b/README Sun Mar 16 15:37:16 2003 +0000 1.4 @@ -0,0 +1,69 @@ 1.5 +tumble: build a PDF file from image files 1.6 +Copyright 2003 Eric Smith <eric@brouhaha.com> 1.7 +$Id: README,v 1.1 2003/03/16 07:37:16 eric Exp $ 1.8 + 1.9 +Tumble is a utility to construct PDF files from one or more image 1.10 +files. Currently the only input image format supported is black & 1.11 +white TIFF files, which may be either single- or multi-page files. In 1.12 +the future additional file formats will be supported, including gray 1.13 +scale and color. Black and white images will be encoded in the PDF 1.14 +output using lossless Group 4 fax compression (ITU-T recommendation 1.15 +T.6). This provides a very good compression ratio for text and line 1.16 +art. 1.17 + 1.18 +The current version of Tumble will only work on little-endian systems, 1.19 +such as x86, VAX, and Alpha. The byte order dependencies will be fixed 1.20 +in a later release. 1.21 + 1.22 +The input and output files can be specified on the command line. 1.23 +Alternatively, a control file, typically with a ".tum" suffix, may be 1.24 +used which allows for more control over the files and options. 1.25 + 1.26 +The general command line syntax is: 1.27 + 1.28 + tumble [options] <input.tif>... -o <output.pdf> 1.29 + 1.30 +The options in this mode are: 1.31 + 1.32 + -v verbose 1.33 + -b <fmt> create bookmarks 1.34 + 1.35 +If the "-b" option is given, bookmarks will be created using the 1.36 +format string, which may contain arbitrary text and/or the following 1.37 +format specifiers: 1.38 + 1.39 + %F file name, sans suffix e.g., "foo.tif" will just appear as "foo" 1.40 + %p page number of input file, useful for multipage TIFF files 1.41 + 1.42 +There is currently no documentation for the control file syntax, as it 1.43 +is still being refined, and many of the options planned for use in 1.44 +control files are not yet fully implemented. Features that will be 1.45 +available in control files include: 1.46 + 1.47 + image resolution specification - useful for input files with 1.48 + unspecified resolution, or to override 1.49 + image rotation, in units of 90 degrees 1.50 + image cropping 1.51 + grouping to allow different specifications for individual pages 1.52 + or groups of consecutive pages (e.g., chapters) 1.53 + ability to control operations independently on even and odd pages 1.54 + (e.g., different rotation or cropping) 1.55 + more flexible bookmark control 1.56 + page labels, so that the PDF file can present the actual document 1.57 + page numbers such as xvii or 3-27 1.58 + 1.59 + 1.60 +This program is free software; you can redistribute it and/or modify 1.61 +it under the terms of the GNU General Public License version 2 as 1.62 +published by the Free Software Foundation. Note that permission is 1.63 +not granted to redistribute this program under the terms of any other 1.64 +version of the General Public License. 1.65 + 1.66 +This program is distributed in the hope that it will be useful, but 1.67 +WITHOUT ANY WARRANTY; without even the implied warranty of 1.68 +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 1.69 +General Public License for more details. 1.70 + 1.71 +You should have received a copy of the GNU General Public License 1.72 +along with this program; if not, write to the Free Software 1.73 +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA