2009.01.06 08:49 "[Tiff] How to delete a TIFF image from a Mulit-TIFF file efficiently", by Mark Pereira

2009.01.06 10:35 "Re: [Tiff] How to delete a TIFF image from a Mulit-TIFF file efficiently", by Gerben Vos

I would like to know an efficient way of deleting a TIFF image from a Multi-TIFF file?

Currently I am doing a tiffsplit followed by a merge (tiffcp). This works fine but its extremely in-efficient

You can use the image addressing feature of tiffcp. For example, if in.tif contains three images,

  tiffcp in.tif,0 in.tif,2 out.tif

will copy the first and third image of in.tif to out.tif.

Gerben Vos.