Skip to content

Instantly share code, notes, and snippets.

@kcliu
Created September 24, 2012 10:45
Show Gist options
  • Save kcliu/3775416 to your computer and use it in GitHub Desktop.
Save kcliu/3775416 to your computer and use it in GitHub Desktop.
function adjustSize(&$crops, $frames, $ratio)
{
// adjust multi-frame height
foreach($frames as $frameNum) {
$crops[$frameNum - 1]->newSx *= $ratio;
$crops[$frameNum - 1]->newSy *= $ratio;
$crops[$frameNum - 1]->newW *= $ratio;
$crops[$frameNum - 1]->newH *= $ratio;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment