Parametro Metodo Miscela
m |
m |
||
Line 27: | Line 27: | ||
http://home.comcast.net/~pxegeek/synfig/straight.png + http://home.comcast.net/~pxegeek/synfig/synfigtux.png = http://home.comcast.net/~pxegeek/synfig/straight.png | http://home.comcast.net/~pxegeek/synfig/straight.png + http://home.comcast.net/~pxegeek/synfig/synfigtux.png = http://home.comcast.net/~pxegeek/synfig/straight.png | ||
− | == | + | ==Sopra== |
− | + | Se un livello è impostato a ''Sopra'' come metodo di miscelazione, solo le parti del livello che stanno sopra un'area non trasparente saranno visibili. | |
− | + | Esattamente: è come per il metodo di miscelazione Composito tranne che la trasparenza del colore risultante è impostata con pari valore di trasparenza del livello B. | |
http://home.comcast.net/~pxegeek/synfig/straight.png + http://home.comcast.net/~pxegeek/synfig/synfigtux.png = http://home.comcast.net/~pxegeek/synfig/onto.png | http://home.comcast.net/~pxegeek/synfig/straight.png + http://home.comcast.net/~pxegeek/synfig/synfigtux.png = http://home.comcast.net/~pxegeek/synfig/onto.png |
Revision as of 12:58, 11 April 2012
Warning! This page contains outdated information. The release of Synfig Studio 0.64.0 introduced new terminology and this translated page needs to be updated according to original English text. You can help updating this page - see instructions here. Thank you! |
Presentazione dei vari metodi di composizione disponibili per i Livelli in Synfig. (Cos'è composizion/miscela.)
Nelle seguenti descrizioni, 'A' si riferisce al colore sul livello con le impostazioni del metodo miscela, e 'B' si riferisce al colore dei livelli sottostanti. Si noti che in quasi tutti i livelli, il canale alfa dei colori avrà un effetto di scalettatura sulla miscelazione. Il parametro 'valore' avrà anch'esso un efetto scalettatura. Nella maggior parte delle descrizioni questi 2 dettagli sono stati ignorati.
Nell'esempio seguente un gradiente varia dal nero al bianco al trasparente (A) è miscelato con il livello sopra un tela in linea di Tux su uno sfondo trasparente (B).
A) & B)
I metodi di miscelazione attualmente disponibili sono:
Contents
Composito
Questo metodo di miscelazione è quello predefinito, semplicemente visualizza il contenuto del livello. Questo metodo di miscelazione è simile alla modalità di livello Modo Normale spesso presente nei programmi 2D.
+ =
Diretto
Questo metodo di miscelazione è simile al precedente, tranne che per il fatto che gli oggetti sotto un oggetto-diretto saranno invisibili. Così che se c'è un oggetto più o meno trasparente sul livello Modo Diretto, gli oggetti sui livelli sottostanti non saranno visibili attraverso di lui.
Più esattamente, il colore risultante è "(A-B)*Valore + B". Quindi se Valore è 1 il risultato è A e se il Valore è 0 il risultato è B. In particolare, if Valore è 1 e A è un colore molto prossimo alla trasparenza, il colore ottenuto sarà anche A; nonostante A sia praticamente trasparente, nulla del colore di B verrà usato.
+ =
Sopra
Se un livello è impostato a Sopra come metodo di miscelazione, solo le parti del livello che stanno sopra un'area non trasparente saranno visibili.
Esattamente: è come per il metodo di miscelazione Composito tranne che la trasparenza del colore risultante è impostata con pari valore di trasparenza del livello B.
+ =
Straight Onto
This method is a combination of the two methods above. E.g. if an half-transparent object is set to Straight Onto, it will only be visible over a non-transparent area, and the non-transparent part under that object won't be visible.
Precisely: the resulting color is "(X-B)*amount + B" where X is A but with its transparency set to A's transparency times B's transparency.
So if amount is 1 the result is A, but with its transparency multiplied by that of B, and if amount is 0 the result is B. In particular, if amount is 1 and A is a very transparent color, the resulting color will be a possibly more transparent version of A; despite the fact that A is very transparent, none of B's color is used in the result.
(Yuck. Are these 'precisely' comments useful?)[Yes!]
+ =
Behind
This blend method makes the layer visible over transparent areas, and invisible over non-transparent areas, giving the impression that the layer is behind the other layers. It is often used for the "Shade" effect layer, to make a drop-shadow effect.
Precisely: this is the same as the composite blend method, but with A and B swapped. B is composited onto A instead of A being composited onto B.
+ =
Screen
This blend method is similar to the Screen Mode often found in 2D programs. It combines the colors of the screen mode layer and the ones behind it, and gives a lighter result in general.
+ =
Overlay
This is similar to PhotoShop - layer blend mode Overlay Mode
Precisely: define 3 new colours: RM = A * B; RS = 1-(1-A)*(1-B); RET = A*RS + (1-A)*RM then blend RET onto B as in the Onto method above(!)
Any idea what that is aiming to do? Or what the layer does in this PhotoShop program? This appears to emulate the effect of a cross-fade between the two layers if they are set to equal amounts - i.e like 'add', but maintaining the overall brightness of the image
+ =
Hard Light
This is similar to PhotoShop - layer blend mode Hard Light Mode
For each of red, green and blue, if the component is in the top half of its range then calculate X=1-(1-(2A-1))*(1-B), otherwise calculate X=2AB, then blend X onto B as in the Onto method above.
Is this aiming to make bright colours brighter and dark colours darker?
+ =
Multiply
This is similar to PhotoShop - layer blend mode Multiply Mode
Precisely: the resulting colour is (((A*B)-B)*amount+B). The calculation is performed independently on red, green, and blue components. When amount is 0, this simplifies to B. When amount is 1 it simplifies to A*B.
+ =
Divide
Describe me
Precisely: the resulting color is (((B/A)-B)*amount)+B.
When amount is 0, this becomes simply B.
When amount is 1, this becomes B/A.
A very small quantity is added to A before dividing by it to avoid a divide-by-zero condition. This causes the divide blend method to bias toward positive values, but the effect is really negligible.
+ =
Add
Describe me
Precisely: the resulting color is (B + A*A.alpha*amount). The calculation is performed independently on red, green, and blue components. The resulting color's alpha is B.alpha.
+ =
Subtract
Describe me
Precisely: the resulting colour is (B-A). The calculation is performed independently on red, green, and blue components.
+ =
Difference
Describe me
Precisely: the resulting colour is the absolute value of (B-A). The calculation is performed independently on red, green, and blue components.
+ =
Brighten
Describe me
Precisely: for each of the red, green, and blue components, compare A's value with B's value and use the higher of the pair.
+ =
Darken
Describe me
Precisely: for each of the red, green, and blue components, compare A's value with B's value and use the lower of the pair.
+ =
Color
Describe me
Precisely: the resulting colour is obtained by adjusting B to have the same U and V values as A, while keeping Y the same.
+ =
As this example looks just like the saturation one, perhaps a yellow gradient instead of a white one would be more illustrative
+ =
Hue
Describe me
Precisely: the resulting colour is obtained by adjusting B to have the same hue as A.
+ =
Saturation
Describe me
Precisely: the resulting colour is obtained by adjusting B to have the same saturation as A. Saturation is the magnitude of the UV vector.
+ =
As this example is so similar to the 'Color' blend example, here it is with a yellow gradient -
+ =
Luminance
Describe me
Precisely: the resulting colour is obtained by adjusting B to have the same Y (luma) value as A, while keeping U and V the same.
+ =
Alpha over
Describe me
+ =