Skip to content

Instantly share code, notes, and snippets.

@cagataygurturk
Created December 22, 2014 19:18
Show Gist options
  • Save cagataygurturk/1421734eafb6b1e24424 to your computer and use it in GitHub Desktop.
Save cagataygurturk/1421734eafb6b1e24424 to your computer and use it in GitHub Desktop.
Image resize on GD
<?php
$gdthumb = new \PHPThumb\GD($imagedata['data']);
$gdthumb->setOptions(array(
'interlace' => false
));
$gdthumb->adaptiveResizeQuadrant($d->getWidth(), $d->getHeight());
$output = $gdthumb->getImageAsString();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment