Reputation: 1624
Hi i have a standard tif file and I want to create a multi layered tiff.
I can seem to find anything on how to do it on the internet.
can you help please.
Thanks.
Upvotes: 1
Views: 1831
Reputation: 1624
convert [source image] -define tiff:tile-geometry=256x256 -compress jpeg 'ptif:o.tif'
This will create a layered tif from the source and name it o.tif using imagemagick
Upvotes: 1