Advertisement
trds

Untitled

Jan 7th, 2022
1,289
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.23 KB | None | 0 0
  1. LoadPlugin("D:\Encode\DG\DGDecodeNV.dll")
  2. DGSource("D:\encode\men.dgi")
  3. crop(0,20,0,-20).FillMargins(0,0,1,0)
  4.  
  5. safe = Crop(8, 0, -8, 0)
  6. ConvertToYV24()
  7.  
  8. base1 = Crop(8, 0, 0, 0)
  9. left1 = Crop(0, 0, 1 - Width(), 0).Tweak(cont=1.7)
  10. left2 = Crop(1, 0, 2 - Width(), 0).Tweak(cont=1.14)
  11. left3 = Crop(2, 0, 3 - Width(), 0).Tweak(cont=0.93)
  12. left4 = Crop(3, 0, 4 - Width(), 0).Tweak(cont=1.05)
  13. left5 = Crop(4, 0, 5 - Width(), 0).Tweak(cont=1.02)
  14. left6 = Crop(5, 0, 6 - Width(), 0)
  15. left7 = Crop(6, 0, 7 - Width(), 0).Tweak(cont=1.03)
  16. left8 = Crop(7, 0, 8 - Width(), 0).Tweak(cont=1)
  17. StackHorizontal(left1, left2, left3, left4, left5, left6, left7, left8, base1)
  18.  
  19. base2 = Crop(0, 0, -8, 0)
  20. right1 = Crop(Width() - 1, 0, -0, 0).Tweak(cont=1.3)
  21. right2 = Crop(Width() - 2, 0, -1, 0).Tweak(cont=1.3)
  22. right3 = Crop(Width() - 3, 0, -2, 0).Tweak(cont=0.88)
  23. right4 = Crop(Width() - 4, 0, -3, 0).Tweak(cont=1.06)
  24. right5 = Crop(Width() - 5, 0, -4, 0)
  25. right6 = Crop(Width() - 6, 0, -5, 0).Tweak(cont=0.98)
  26. right7 = Crop(Width() - 7, 0, -6, 0).Tweak(cont=1.03)
  27. right8 = Crop(Width() - 8, 0, -7, 0)
  28. StackHorizontal(base2, right8, right7, right6, right5, right4, right3, right2, right1)
  29.  
  30. ConvertToYV12()
  31. Overlay(last, safe, x=8, y=0)
  32.  
  33. Fixer(3,0,3,0)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement