AviSynthGimpLayer
From Avisynth wiki
Abstract | |
---|---|
Author | panzerboy66 |
Version | 2012/12/01 |
Download | AvisynthGimpLayer.zip |
Category | Layering |
License | GPLv2 |
Discussion | Doom9 Thread |
Contents |
Description
Gimp-style Layer merge plugin for AviSynth.
See gimp-concepts-layer-modes for a description of how these merges work.
Requirements
- [x86] AviSynth+ or AviSynth 2.5.8 or greater
- Supported color formats: RGB24, RGB32
Syntax and Parameters
Normal (clip, clip, float "opacity") Multiply (clip, clip, float "opacity") Divide (clip, clip, float "opacity") Screen (clip, clip, float "opacity") GimpOverlay (clip, clip, float "opacity") Burn (clip, clip, float "opacity") Dodge (clip, clip, float "opacity") Hardlight (clip, clip, float "opacity") Softlight (clip, clip, float "opacity") GrainExtract (clip, clip, float "opacity") GrainMerge (clip, clip, float "opacity") Difference (clip, clip, float "opacity") Addition (clip, clip, float "opacity") Subtract (clip, clip, float "opacity") DarkenOnly (clip, clip, float "opacity") LightenOnly (clip, clip, float "opacity") Hue (clip, clip, float "opacity") Saturation (clip, clip, float "opacity") Colour (clip, clip, float "opacity") Value (clip, clip, float "opacity")
- clip =
- clip =
- Input clips; the 2nd clip is merged 'on top' of the first. Clips should be in RGB or RGBA format only.
- clip =
- float opacity =
- Opacity is 100 for full and 0 for transparent.
- float opacity =
- Note the spelling of
GimpOverlay
, there is already a built in overlay filter, don't confuse the two.
- Note the spelling of
- Note the last four merges
Hue, Saturation, Colour and Value
do an intrinsic RGB->HSV conversion and back so will probably be slow.
You may be better off doing a ConvertToYV12 and MergeChroma rather than the Colour Merge.
- Note the last four merges
- If you need a simple merge that works on RGB format clips then
Normal
will do it.
- If you need a simple merge that works on RGB format clips then
Examples
TODO
Changelog
Version Date(D/M/Y) Changes
2012/12/01 - Bug fix release, Colour, Hue and Saturation filters fixed. 2012/01/31 - Initial release
Archived Downloads
Version | Download | Mirror |
---|---|---|
2012/12/01 | AvisynthGimpLayer.zip |
External Links
Back to External Filters ←