Skip to content

Instantly share code, notes, and snippets.

@gsdevme
Created October 18, 2012 12:04
Show Gist options
  • Save gsdevme/3911383 to your computer and use it in GitHub Desktop.
Save gsdevme/3911383 to your computer and use it in GitHub Desktop.
WideImage Resize/Crop
<?php
require_once __DIR__ . '/WideImage/lib/WideImage.php';
$image = WideImage::load(__DIR__ . '/product_1.jpg')
->resize(300,150,'outside')
->crop("center", "middle", 300, 150)
->saveToFile('ff.jpg');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment