The multi-page tiff is quite large, ~700 pages.
When I run the following command:
Code: Select all
convert multipage.tif singlepage%d.tif
Any ideas?
Running ImageMagick-6.9.2-Q16 on Windows 7 (same issue with PowerShell & CMD prompt)
Code: Select all
convert multipage.tif singlepage%d.tif
Code: Select all
convert multipage.tif[0] singlepage0.tif
Code: Select all
identify multipage.tif
Code: Select all
PS C:\> convert SPEC1.tif[0] SPEC_page1.tif
convert.exe: Unknown field with tag 292 (0x124) encountered. `TIFFReadDirectory' @ warning/tiff.c/TIFFWarnings/887.
PS C:\> convert SPEC1.tif[0] SPEC_page1.pdf
convert.exe: Unknown field with tag 292 (0x124) encountered. `TIFFReadDirectory' @ warning/tiff.c/TIFFWarnings/887.
PS C:\>
Code: Select all
SPEC1.tif[681] TIFF 1656x2339 1656x2339+0+0 1-bit Bilevel Gray 23.98MB 0.218u 0:02.111
SPEC1.tif[682] TIFF 1656x2339 1656x2339+0+0 1-bit Bilevel Gray 23.98MB 0.218u 0:02.114
SPEC1.tif[683] TIFF 1656x2339 1656x2339+0+0 1-bit Bilevel Gray 23.98MB 0.218u 0:02.118
identify.exe: Unknown field with tag 292 (0x124) encountered. `TIFFReadDirectory' @ warning/tiff.c/TIFFWarnings/887.
PS C:\>
So I would guess the tif file is not in a format Imagemagick likes. You could try generating the tif with some other software and see what you get.TIFF Tag T4Option
IFD
Image
Code
292 (hex 0x0124)
Name
T4Options
LibTiff name
TIFFTAG_GROUP3OPTIONS
Type
LONG
Count
1
Default
0 (basic 1-dimensional coding)
Description
Options for Group 3 Fax compression
This field is made up of a set of 32 flag bits. Unused bits must be set to 0. Bit 0 is the low-order bit.
The specification defines these bits:
Bit 0 is 1 for 2-dimensional coding (otherwise 1-dimensional is assumed). For 2-D coding, if more than one strip is specified, each strip must begin with a 1-dimensionally coded line. That is, RowsPerStrip should be a multiple of Parameter K, as documented in the CCITT specification.
Bit 1 is 1 if uncompressed mode is used.
Bit 2 is 1 if fill bits have been added as necessary before EOL codes such that EOL always ends on a byte boundary, thus ensuring an EOL-sequence of 1 byte preceded by a zero nibble: xxxx-0000 0000-0001.
LibTiff defines these bits as follows:
GROUP3OPT_2DENCODING = 1;
GROUP3OPT_UNCOMPRESSED = 2;
GROUP3OPT_FILLBITS = 4;