Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2012
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <?xml version='1.0' encoding='UTF-8'?>
  2. <gegl out='dst-over1'>
  3.  
  4.   <node id='gegl.png' op='gegl:load'>
  5.     <param name='path'>data/gegl.png</param>
  6.   </node>
  7.  
  8.   <node id='"car-stack.png' op='gegl:load'>
  9.     <param name='path'>data/"car-stack.png</param>
  10.   </node>
  11.  
  12.   <node id='bg1' op='gegl:gaussian-blur'>
  13.     <edge from='output' of='gegl.png' to='input' />
  14.     <param name='std-dev-x'>5.0</param>
  15.     <param name='std-dev-y'>5.0</param>
  16.   </node>
  17.  
  18.   <node id='add1' op='gegl:add'>
  19.     <edge from='output' of='bg1' to='input' />
  20.     <param name='value'>0.5</param>
  21.   </node>
  22.  
  23.   <node id='tr1' op='gegl:translate'>
  24.     <edge from='output' of='add1' to='input' />
  25.     <param name='x'>5.0</param>
  26.     <param name='y'>-2.0</param>
  27.   </node>
  28.  
  29.   <node id='dst-over1' op='gegl:dst-over'>
  30.     <edge from='output' of='gegl.png' to='input' />
  31.     <edge from='output' of='car-stack.png' to='aux' />
  32.   </node>
  33.  
  34. </gegl>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement