Versions of ImageMagick used:
Windows: ImageMagick 6.8.7-0-Q8-x64-dll
Windows: ImageMagick 6.8.8-7-Q16-x86-dll
Linux: ImageMagick 6.7.8-8 2013-03-18 Q16
I have been searching the forums and found one reference to my problem:
viewtopic.php?f=1&t=15244&hilit=tiff%3Adocument
It was solved by using +set tiff:document and +set tiff:rows-per-strip but for me it does not work.
As an example, I want to create a blank image using this:
Code: Select all
convert -size 100x100 xc:white -units PixelsPerInch +set tiff:document -define tiff:rows-per-strip=100 -density 400 -depth 8 ^
-type Bilevel -colorspace Gray -compress None c:\im\out\image.tif
Code: Select all
identify -verbose c:\im\out\image.tif
Code: Select all
Properties:
date:create: 2014-02-21T20:09:45-05:00
date:modify: 2014-02-21T20:25:47-05:00
signature: f97b03c5734e97166dfea3f40b8d4a9bc165e5111065d1dc848ec6332d10c9b1
tiff:document: c:\im\out\image.tif
tiff:endian: lsb
tiff:photometric: min-is-black
tiff:rows-per-strip: 4
Artifacts:
filename: image.tif
verbose: true
I need to remove the tiff:document property or at the minimum the path.
The output name given was just an example but in actual fact, I generate a list of the tiff files to be
processed and the filenames are used as the output filenames and sent into another folder.
ex.:
input files
c:\im\in\image1.tif
c:\im\in\image2.tif
etc.
output files
c:\im\out\image1.tif
c:\im\out\image2.tif
etc.
Is there any hope?
Dennis.