Guest User

Untitled

a guest
May 25th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. <?php
  2. /*---------------------------------------------------------------------------*/
  3.  
  4. include('./effects/crop.php');
  5. include('./effects/scale.php');
  6.  
  7. /*---------------------------------------------------------------------------*/
  8.  
  9. $crop = new EffectCrop(array(
  10. 'bg' => '000000',
  11. 'width' => 960,
  12. 'xalign' => 'center',
  13. 'yalign' => 'top'
  14. ));
  15.  
  16. $scale = new EffectScale(array(
  17. 'bg' => '000000',
  18. 'width' => 582,
  19. 'height' => 347,
  20. 'trim' => true,
  21. 'xalign' => 'center',
  22. 'yalign' => 'top'
  23. ));
  24.  
  25. $crop->apply($image);
  26. $scale->apply($image);
  27.  
  28. /*---------------------------------------------------------------------------*/
  29. ?>
Add Comment
Please, Sign In to add comment