Created
August 15, 2014 12:39
-
-
Save bmarshall511/55f1db9e3edadf425dd2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $style = image_style_save(array('name' => 'avatar')); | |
| $effect = array( | |
| 'name' => 'image_scale', | |
| 'data' => array( | |
| 'width' => 64, | |
| 'height' => 64, | |
| 'upscale' => TRUE, | |
| ), | |
| 'isid' => $style['isid'], | |
| ); | |
| image_effect_save($effect); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment