trds

Untitled

Apr 23rd, 2022
1,053
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.74 KB | None | 0 0
  1. LoadPlugin("D:\Encode\DG\x64 Binaries\DGDecodeNV.dll")
  2. DGSource("D:\encode\cruella.dgi")
  3. crop(0,20,0,-20).fillmargins(0,1,0,1)
  4. safe = Crop(0, 4, 0, -4)
  5. ConvertToYV24()
  6.  
  7. base1 = Crop(0, 4, 0, 0)
  8.  
  9. t1 = Crop(0, 0, 0, 1 - Height()).Tweak(cont=1.1)
  10. t2 = Crop(0, 1, 0, 2 - Height()).Tweak(cont=1.06)
  11. t3 = Crop(0, 2, 0, 3 - Height()).Tweak(cont=0.97)
  12. t4 = Crop(0, 3, 0, 4 - Height()).Tweak(cont=1)
  13. StackVertical(t1, t2, t3, t4, base1)
  14.  
  15. base2 = Crop(0, 0, 0, -4)
  16.  
  17. b1 = Crop(0, Height() - 1, 0, 0).Tweak(cont=1.08)
  18. b2 = Crop(0, Height() - 2, 0, -1).Tweak(cont=1.06)
  19. b3 = Crop(0, Height() - 3, 0, -2).Tweak(cont=0.98)
  20. b4= Crop(0, Height() - 4, 0, -3)
  21. StackVertical(base2, b4, b3, b2, b1)
  22.  
  23. ConvertToYV12()
  24.  
  25. Overlay(last, safe, x=0, y=4)
Advertisement
Add Comment
Please, Sign In to add comment