Page 1 of 1

Write single page tiff

Posted: 2018-12-11T19:12:05-07:00
by MurrayW
Hi all,

I am using ImageMagick-7.0.8-11-Q16-x64 on Windows 10.

To extract a single band from RGB images I have been using eg: convert Image.tif -channel R -separate ImageR.tif

ImageR.tif is showing: "Page Number: 1 2" in the Exiftool in XnView, and when I bring the to ArcMAP it asks which page I want to load. Can I specify that the output is to have only 1 page?

cheers
Murray

Re: Write single page tiff

Posted: 2018-12-11T20:22:11-07:00
by fmw42
Try

Code: Select all

convert Image.tif[0] -channel R -separate ImageR.tif 

To get the red channel from the first layer/page. Change [0] to another number to get the appropriate layer or page's red channel. Note that numbering starts with 0 for the first layer/page.

Re: Write single page tiff

Posted: 2018-12-18T15:41:28-07:00
by MurrayW
Thanks. That worked!