opacity + rotation control for specific layers
Posted: 2011-07-26T09:15:41-07:00
I would like to -flatten multiple animations into a single animation, using image sequences. I've written a code which does the merging, however at the moment it is only doing basic operations. At the moment this is all the code (of course with the specific image names from the sequence):
What i would like to ask, is that how would it be possible to:
1. flip vertically / flip horizontally / rotate by 180 degrees specific "layers". For example what would be the code if I would like to have b.png rotated by 180 degrees, while keeping a.png and c.png in place.
2. Fade in and out specific layers in an animation. In practise, I think it means providing an opacity value for a given layer for a given frame. So, I think this question is basically: how to adjust opacity (0-100%) for a specific layer while keeping the others intact.
Code: Select all
convert a.png b.png c.png d.png -background transparent -flatten out.png
1. flip vertically / flip horizontally / rotate by 180 degrees specific "layers". For example what would be the code if I would like to have b.png rotated by 180 degrees, while keeping a.png and c.png in place.
2. Fade in and out specific layers in an animation. In practise, I think it means providing an opacity value for a given layer for a given frame. So, I think this question is basically: how to adjust opacity (0-100%) for a specific layer while keeping the others intact.