1
0
mirror of synced 2026-04-04 21:17:47 +00:00

Remove claim that big-endian hosts are not supported; pkubaj says in github issue 11 that it works.

This commit is contained in:
Eric Smith
2022-04-28 21:00:10 -06:00
parent 5b1d2b6675
commit 7589c805f2
2 changed files with 2 additions and 6 deletions

6
README
View File

@@ -1,5 +1,5 @@
tumble: build a PDF file from image files
Copyright 2003-2017 Eric Smith <spacewar@gmail.com>
Copyright 2003-2022 Eric Smith <spacewar@gmail.com>
Tumble is a utility to construct PDF files from one or more image
files. Supported input image file formats are JPEG, and black and
@@ -9,10 +9,6 @@ encoded in the PDF output using lossless Group 4 fax compression
ratio for text and line art. JPEG images will be preserved with the
original coding.
The current version of Tumble will only work on little-endian systems,
such as x86, VAX, and Alpha. The byte order dependencies will be fixed
in a later release.
The input and output files can be specified on the command line.
Alternatively, a control file, typically with a ".tum" suffix, may be
used which allows for more control over the files and options.

View File

@@ -30,7 +30,7 @@
#include <tiffio.h>
/*
* On the x86, libtiff defaults to bit-endian bit order for no good reason.
* On the x86, libtiff defaults to big-endian bit order for no good reason.
* In theory, the '-L' (and maybe '-H') should give us little-endian bit
* order, but it doesn't seem to work. Thus we reverse the bits ourselves
* after we read in the file.