see
viewtopic.php?f=1&t=25066&p=108472#p108472
Possibly the colon between tiff and rows-per-strip (tiff:rows-per-strip) may be causing confusion in parsing?
-+define tiff properties not working in IM 6.8.8.8 beta
Re: -+define tiff properties not working in IM 6.8.8.8 beta
- # convert -size 100x100 xc:white -units PixelsPerInch -define tiff:rows-per-strip=100 -density 400 -depth 8 -type Bilevel -colorspace Gray -compress None outfile.tif
# tiffinfo outfile.tif | grep Rows
Rows/Strip: 100
# identify -verbose outfile.tif | grep rows-per-strip
tiff:rows-per-strip: 81
- TIFFGetField(tiff,TIFFTAG_ROWSPERSTRIP,&rows_per_strip);
- # convert -size 100x100 xc:white -units PixelsPerInch -define tiff:rows-per-strip=80 -density 400 -depth 8 -type Bilevel -colorspace Gray -compress None outfile.tif
# tiffinfo outfile.tif | grep Rows
Rows/Strip: 80
# identify -verbose outfile.tif | grep rows-per-strip
tiff:rows-per-strip: 80
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: -+define tiff properties not working in IM 6.8.8.8 beta
what about the +define to remove the fields? That does not seem to work.
Re: -+define tiff properties not working in IM 6.8.8.8 beta
- what about the +define to remove the fields? That does not seem to work.
The user wanted to remove the tiff:... fields. Also when I tried +define "*", I got an error message. see the reference in my first post above.