AviSynthGimpLayer

From Avisynth wiki
Jump to: navigation, search
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


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.


float  opacity =
Opacity is 100 for full and 0 for transparent.


  • Note the spelling of GimpOverlay, there is already a built in overlay filter, don't confuse the two.
  • 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.
  • If you need a simple merge that works on RGB format clips then Normal will do it.


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

Personal tools