Skip to content

Instantly share code, notes, and snippets.

@yurkinx
Last active December 26, 2015 04:09
Show Gist options
  • Save yurkinx/7090867 to your computer and use it in GitHub Desktop.
Save yurkinx/7090867 to your computer and use it in GitHub Desktop.
Yii2-image ext example
$file=Yii::getAlias('@app/pass/to/file');
$image=Yii::$app->image->load($file);
header("Content-Type: image/png");
echo $image->resize($width,$height)->rotate(30)->render();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment