From 7589c805f20feef9d19974d5cbdbeb5e14ae5164 Mon Sep 17 00:00:00 2001 From: Eric Smith Date: Thu, 28 Apr 2022 21:00:10 -0600 Subject: [PATCH] Remove claim that big-endian hosts are not supported; pkubaj says in github issue 11 that it works. --- README | 6 +----- tumble_tiff.c | 2 +- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/README b/README index 3449028..72e4da8 100644 --- a/README +++ b/README @@ -1,5 +1,5 @@ tumble: build a PDF file from image files -Copyright 2003-2017 Eric Smith +Copyright 2003-2022 Eric Smith 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. diff --git a/tumble_tiff.c b/tumble_tiff.c index 8032093..e8f7781 100644 --- a/tumble_tiff.c +++ b/tumble_tiff.c @@ -30,7 +30,7 @@ #include /* - * 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.