List of TIFFs to layers in PSD, then back to TIFFs
Posted: 2015-06-02T08:29:49-07:00
I'd like to be able to automatically (no input from user) do the following:
File -> Scripts -> Load Files into Stack...
And then the other way:
File -> Scripts -> Export Layers to Files...
But this is manual, I want automation, am I correct in thinking this can be achieved? (possibly not the layer and file naming?)
I thought I got half-way there with convert and adjoin, but realised it wasn't quite right...
I tried:
But this did not give me what I wanted, so I misunderstand adjoin...
Thanks for any help
- take a bunch of TIFFs (they are all the same size/colour range/etc.)
- create a PSD where each TIFF is a layer
- name the layers to something user-friendly
- take a PSD with a bunch of layers
- export each layer to a TIFF, naming the file a specific name (preferably overwriting the input TIFFs)
- 20150602_classification.tiff
- 20150602_height.tiff
- 20150602_intensity.tiff
- classification
- height
- intensity
File -> Scripts -> Load Files into Stack...
And then the other way:
File -> Scripts -> Export Layers to Files...
But this is manual, I want automation, am I correct in thinking this can be achieved? (possibly not the layer and file naming?)
I thought I got half-way there with convert and adjoin, but realised it wasn't quite right...
I tried:
Code: Select all
convert -adjoin 20150602_classification.tiff -adjoin 20150602_height.tiff -adjoin 20150602_intensity.tiff work.psd
Thanks for any help