How to split multi-page TIFF using Linux shell and convert to PNG

split_tiff.sh
convert mytiff.tiff -format png -scene 1 out%d.png

This will produce out1.png, out2.png, …

Optionally, you can also rotate the files:

split_tiff_rotate.sh
convert mytiff.tiff -rotate 90 -format png -scene 1 out%d.png

Check out similar posts by category: Linux