I want to create and add a second layer to a TIF file.
My original file is TIF with only one layer with transparacy (it is a picture of a chair on transparent background).
I want to add an additional layer to that file, and a fill it with a color (rgb=152,152,152), and then place this new layer under the existing one.
I do not want to merge them, I just want to get a new TIF-file with 2 layers instead.
Any one know how to do this?
I thought that maybe I could clone the layer and fill it with a color then change the layer order.
But I can't get it to work...
Code: Select all
magick mylayeredfile.tif ( -clone 0 -background "rgb(152,152,152)" -flatten) -alpha set -reverse newlayeredfile.tif
I found this tread online about how to merge diffrent files to a layered PSD:
https://stackoverflow.com/questions/187 ... agick?lq=1
But since I just need a layer in a color, maybe I could do this directly in IM and not use diffrent files that combines?
Allthou I need it so still be a TIF (with layers).